diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-12-27 14:25:20 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-12-27 14:25:20 +0900 |
| commit | 88dca1400e17432d80d2703eb751a0d806f43bc9 (patch) | |
| tree | f464a8b5697e4f3366652812cbe88549d5e75322 /packages/client/src | |
| parent | :art: (diff) | |
| download | misskey-88dca1400e17432d80d2703eb751a0d806f43bc9.tar.gz misskey-88dca1400e17432d80d2703eb751a0d806f43bc9.tar.bz2 misskey-88dca1400e17432d80d2703eb751a0d806f43bc9.zip | |
:art:
Diffstat (limited to 'packages/client/src')
| -rw-r--r-- | packages/client/src/pages/settings/profile.vue | 11 |
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> |