fix the problem that the last label does not have divider line when filling in a new label

This commit is contained in:
MaysWind
2023-06-11 22:55:12 +08:00
parent b3e886d444
commit 702c095544
+1 -1
View File
@@ -31,7 +31,7 @@
:sortable-enabled="sortable" @sortable:sort="onSort" :sortable-enabled="sortable" @sortable:sort="onSort"
v-if="!loading"> v-if="!loading">
<f7-list-item swipeout <f7-list-item swipeout
:class="{ 'actual-first-child': tag.id === firstShowingId, 'actual-last-child': tag.id === lastShowingId }" :class="{ 'actual-first-child': tag.id === firstShowingId, 'actual-last-child': tag.id === lastShowingId && !newTag }"
:id="getTagDomId(tag)" :id="getTagDomId(tag)"
:key="tag.id" :key="tag.id"
v-for="tag in tags" v-for="tag in tags"