fix(VnNotes): refs #6336 fix v-for key #310

Merged
alexm merged 3 commits from 6336_fix_vn_notes_key into dev 2024-04-22 12:09:19 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 4a5285358c - Show all commits

View File

@ -78,8 +78,8 @@ async function insert() {
<TransitionGroup name="list" tag="div" class="column items-center full-width">
<QCard
class="q-pa-xs q-mb-sm full-width"
v-for="note in rows"
:key="note.id"
v-for="(note, index) in rows"
:key="note.id ?? index"
>
<QCardSection horizontal>
<VnAvatar