make logs show "more" instead of displaying full log

This commit is contained in:
Kenny 2022-03-04 08:52:04 -05:00
parent 295a56e240
commit bdd2069a7e
1 changed files with 8 additions and 1 deletions

View File

@ -7,7 +7,14 @@
{{ item.name }}
<span v-text="` ${new Date(item.time).toLocaleString()}`" class="date" />
</v-card-title>
<v-card-text v-text="item.data" />
<v-expansion-panels>
<v-expansion-panel>
<v-expansion-panel-header>More</v-expansion-panel-header>
<v-expansion-panel-content v-text="item.data" style="padding: 1em;" />
</v-expansion-panel>
</v-expansion-panels>
</v-card>
</v-list-item>