diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-13 12:43:19 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-13 12:43:19 +0900 |
| commit | 7f2356ba4bf45b1a240c557d942ef10effb092d4 (patch) | |
| tree | e95a09a398cb6e7d1b6bdd783c79df3eebe358cd /src/client/components/notes.vue | |
| parent | fix bug (diff) | |
| download | misskey-7f2356ba4bf45b1a240c557d942ef10effb092d4.tar.gz misskey-7f2356ba4bf45b1a240c557d942ef10effb092d4.tar.bz2 misskey-7f2356ba4bf45b1a240c557d942ef10effb092d4.zip | |
Tweak UI
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 33fb57c8cf..aedf11bc40 100644 --- a/src/client/components/notes.vue +++ b/src/client/components/notes.vue @@ -15,7 +15,7 @@ </div> <XList ref="notes" :items="notes" v-slot="{ item: note }" :direction="reversed ? 'up' : 'down'" :reversed="reversed"> - <XNote :note="note" class="_block _gap" @update:note="updated(note, $event)" :key="note._featuredId_ || note._prId_ || note.id"/> + <XNote :note="note" class="_block" @update:note="updated(note, $event)" :key="note._featuredId_ || note._prId_ || note.id"/> </XList> <div v-show="more && !reversed" style="margin-top: var(--margin);"> |