summaryrefslogtreecommitdiff
path: root/packages/frontend/src/pages/channels.vue
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2023-01-06 09:41:14 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2023-01-06 09:41:14 +0900
commit372a17d7f0fd4e95086b5e9685d4c21a3550422b (patch)
treee6c4dca5d37651f6479df74f624bd6ee252b75f4 /packages/frontend/src/pages/channels.vue
parentfix(backend): Set correct access control of admin/drive/files (#9472) (diff)
downloadmisskey-372a17d7f0fd4e95086b5e9685d4c21a3550422b.tar.gz
misskey-372a17d7f0fd4e95086b5e9685d4c21a3550422b.tar.bz2
misskey-372a17d7f0fd4e95086b5e9685d4c21a3550422b.zip
refactor
Diffstat (limited to 'packages/frontend/src/pages/channels.vue')
-rw-r--r--packages/frontend/src/pages/channels.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/pages/channels.vue b/packages/frontend/src/pages/channels.vue
index cc8375f636..9043d06c52 100644
--- a/packages/frontend/src/pages/channels.vue
+++ b/packages/frontend/src/pages/channels.vue
@@ -2,17 +2,17 @@
<MkStickyContainer>
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
<MkSpacer :content-max="700">
- <div v-if="tab === 'featured'" class="_content grwlizim featured">
+ <div v-if="tab === 'featured'" class="grwlizim featured">
<MkPagination v-slot="{items}" :pagination="featuredPagination">
<MkChannelPreview v-for="channel in items" :key="channel.id" class="_margin" :channel="channel"/>
</MkPagination>
</div>
- <div v-else-if="tab === 'following'" class="_content grwlizim following">
+ <div v-else-if="tab === 'following'" class="grwlizim following">
<MkPagination v-slot="{items}" :pagination="followingPagination">
<MkChannelPreview v-for="channel in items" :key="channel.id" class="_margin" :channel="channel"/>
</MkPagination>
</div>
- <div v-else-if="tab === 'owned'" class="_content grwlizim owned">
+ <div v-else-if="tab === 'owned'" class="grwlizim owned">
<MkButton class="new" @click="create()"><i class="ti ti-plus"></i></MkButton>
<MkPagination v-slot="{items}" :pagination="ownedPagination">
<MkChannelPreview v-for="channel in items" :key="channel.id" class="_margin" :channel="channel"/>