Skip to content

Commit

Permalink
Fix latest Vue template compiler warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
rnwood committed Mar 25, 2021
1 parent 9dfb74e commit 7901fbb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
</el-alert>

<div class="toolbar"><el-button size="small" icon="el-icon-document" @click="download">Open</el-button></div>
<template v-show="source" class="vfillpanel fill">
<div v-show="source" class="vfillpanel fill">
<textview :text="source" class="fill"></textview>
</template>
</div>
</div>
</template>
<script lang="ts">
Expand Down
4 changes: 2 additions & 2 deletions Rnwood.Smtp4dev/ClientApp/src/components/messagesource.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
</el-alert>

<div class="toolbar"><el-button size="small" @click="download">Open</el-button></div>
<template v-show="source" class="vfillpanel fill">
<div v-show="source" class="vfillpanel fill">
<textview :text="source" class="fill"></textview>
</template>
</div>
</div>
</template>
<script lang="ts">
Expand Down
4 changes: 2 additions & 2 deletions Rnwood.Smtp4dev/ClientApp/src/components/sessionview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
<el-button size="small" @click="download">Open</el-button>
</div>

<template v-show="log" class="vfillpanel fill">
<div v-show="log" class="vfillpanel fill">
<textview :text="log" class="fill"></textview>
</template>
</div>
</el-tab-pane>
</el-tabs>
</div>
Expand Down

0 comments on commit 7901fbb

Please sign in to comment.