summaryrefslogtreecommitdiff
path: root/src/client/components/date-separated-list.vue
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-08-14 22:35:15 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-08-14 22:35:15 +0900
commitd3b4b70bfc4b86ba283b46b4fb95954450854190 (patch)
treee8c54a0e9ff2e51cb663c2d071aba040b541ccb8 /src/client/components/date-separated-list.vue
parentfeat(client): ジョブキューウィジェットに警報音を鳴らす設... (diff)
downloadmisskey-d3b4b70bfc4b86ba283b46b4fb95954450854190.tar.gz
misskey-d3b4b70bfc4b86ba283b46b4fb95954450854190.tar.bz2
misskey-d3b4b70bfc4b86ba283b46b4fb95954450854190.zip
:art:
Diffstat (limited to 'src/client/components/date-separated-list.vue')
-rw-r--r--src/client/components/date-separated-list.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/components/date-separated-list.vue b/src/client/components/date-separated-list.vue
index 7a4cc5ef98..fa0b6d669c 100644
--- a/src/client/components/date-separated-list.vue
+++ b/src/client/components/date-separated-list.vue
@@ -93,13 +93,13 @@ export default defineComponent({
});
return h(this.$store.state.animation ? TransitionGroup : 'div', this.$store.state.animation ? {
- class: 'sqadhkmv' + (this.noGap ? ' noGap _block' : ''),
+ class: 'sqadhkmv' + (this.noGap ? ' noGap' : ''),
name: 'list',
tag: 'div',
'data-direction': this.direction,
'data-reversed': this.reversed ? 'true' : 'false',
} : {
- class: 'sqadhkmv' + (this.noGap ? ' noGap _block' : ''),
+ class: 'sqadhkmv' + (this.noGap ? ' noGap' : ''),
}, {
default: renderChildren
});