summaryrefslogtreecommitdiff
path: root/packages/client
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-12-27 14:25:20 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-12-27 14:25:20 +0900
commit88dca1400e17432d80d2703eb751a0d806f43bc9 (patch)
treef464a8b5697e4f3366652812cbe88549d5e75322 /packages/client
parent:art: (diff)
downloadmisskey-88dca1400e17432d80d2703eb751a0d806f43bc9.tar.gz
misskey-88dca1400e17432d80d2703eb751a0d806f43bc9.tar.bz2
misskey-88dca1400e17432d80d2703eb751a0d806f43bc9.zip
:art:
Diffstat (limited to 'packages/client')
-rw-r--r--packages/client/src/pages/settings/profile.vue11
1 files changed, 9 insertions, 2 deletions
diff --git a/packages/client/src/pages/settings/profile.vue b/packages/client/src/pages/settings/profile.vue
index 868068e010..14eeeaaa11 100644
--- a/packages/client/src/pages/settings/profile.vue
+++ b/packages/client/src/pages/settings/profile.vue
@@ -53,9 +53,16 @@
<template #caption>{{ i18n.ts._profile.metadataDescription }}</template>
</FormSlot>
- <FormSwitch v-model="profile.isCat" class="_formBlock">{{ i18n.ts.flagAsCat }}<template #caption>{{ i18n.ts.flagAsCatDescription }}</template></FormSwitch>
+ <FormFolder>
+ <template #label>{{ i18n.ts.advancedSettings }}</template>
+
+ <div class="_formRoot">
+ <FormSwitch v-model="profile.isCat" class="_formBlock">{{ i18n.ts.flagAsCat }}<template #caption>{{ i18n.ts.flagAsCatDescription }}</template></FormSwitch>
+ <FormSwitch v-model="profile.isBot" class="_formBlock">{{ i18n.ts.flagAsBot }}<template #caption>{{ i18n.ts.flagAsBotDescription }}</template></FormSwitch>
+ </div>
+ </FormFolder>
+
<FormSwitch v-model="profile.showTimelineReplies" class="_formBlock">{{ i18n.ts.flagShowTimelineReplies }}<template #caption>{{ i18n.ts.flagShowTimelineRepliesDescription }} {{ i18n.ts.reflectMayTakeTime }}</template></FormSwitch>
- <FormSwitch v-model="profile.isBot" class="_formBlock">{{ i18n.ts.flagAsBot }}<template #caption>{{ i18n.ts.flagAsBotDescription }}</template></FormSwitch>
</div>
</template>