diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-12-30 17:31:59 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-12-30 17:31:59 +0900 |
| commit | e763c6e6617ecabb08e4241418fae22609754c05 (patch) | |
| tree | 2bf5bd4788bb66ddb418b752872e6e08691ffb86 /src/client/components | |
| parent | 12.65.4 (diff) | |
| download | misskey-e763c6e6617ecabb08e4241418fae22609754c05.tar.gz misskey-e763c6e6617ecabb08e4241418fae22609754c05.tar.bz2 misskey-e763c6e6617ecabb08e4241418fae22609754c05.zip | |
プロモーション増殖バグ修正
Diffstat (limited to 'src/client/components')
| -rw-r--r-- | src/client/components/date-separated-list.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/components/date-separated-list.vue b/src/client/components/date-separated-list.vue index 3336fab9bd..be9f01ca1f 100644 --- a/src/client/components/date-separated-list.vue +++ b/src/client/components/date-separated-list.vue @@ -49,7 +49,7 @@ export default defineComponent({ const el = this.$slots.default({ item: item })[0]; - el.key = item.id; + if (el.key == null && item.id) el.key = item.id; if ( i != this.items.length - 1 && |