diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-18 08:41:32 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-18 08:41:32 +0900 |
| commit | a54de07260c3555d0230492970448604ffb9d586 (patch) | |
| tree | 0650c5de48af1cd5b5945da6a3dff6093ceaefd1 /src/client/components/notes.vue | |
| parent | Fix type (diff) | |
| download | misskey-a54de07260c3555d0230492970448604ffb9d586.tar.gz misskey-a54de07260c3555d0230492970448604ffb9d586.tar.bz2 misskey-a54de07260c3555d0230492970448604ffb9d586.zip | |
Resolve #5963
Diffstat (limited to 'src/client/components/notes.vue')
| -rw-r--r-- | src/client/components/notes.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/components/notes.vue b/src/client/components/notes.vue index fb3a4314ba..2bf6327b09 100644 --- a/src/client/components/notes.vue +++ b/src/client/components/notes.vue @@ -15,7 +15,7 @@ </div> <x-list ref="notes" class="notes" :items="notes" v-slot="{ item: note }" :direction="reversed ? 'up' : 'down'" :reversed="reversed"> - <x-note :note="note" :detail="detail" :key="note.id"/> + <x-note :note="note" :detail="detail" :key="note._prInjectionId_ || note.id"/> </x-list> <div class="more" v-if="more && !reversed" style="margin-top: var(--margin);"> |