diff options
| author | yupix <yupi0982@outlook.jp> | 2023-05-14 10:38:52 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-14 10:38:52 +0900 |
| commit | 30ff4592ccf25ef047aaf34017e32f7e12142f32 (patch) | |
| tree | 0d79b816a2baff08331e3170f683c858f1b072cf /packages/frontend/src/components/MkUserSetupDialog.Privacy.vue | |
| parent | feat: 開発者モードを追加 (diff) | |
| parent | change(frontend): 動的ページのコンポーネントを削除 (diff) | |
| download | misskey-30ff4592ccf25ef047aaf34017e32f7e12142f32.tar.gz misskey-30ff4592ccf25ef047aaf34017e32f7e12142f32.tar.bz2 misskey-30ff4592ccf25ef047aaf34017e32f7e12142f32.zip | |
Merge branch 'misskey-dev:develop' into feat/client-dev-mode
Diffstat (limited to 'packages/frontend/src/components/MkUserSetupDialog.Privacy.vue')
| -rw-r--r-- | packages/frontend/src/components/MkUserSetupDialog.Privacy.vue | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/frontend/src/components/MkUserSetupDialog.Privacy.vue b/packages/frontend/src/components/MkUserSetupDialog.Privacy.vue index e9f4f68df8..5cea67ccf5 100644 --- a/packages/frontend/src/components/MkUserSetupDialog.Privacy.vue +++ b/packages/frontend/src/components/MkUserSetupDialog.Privacy.vue @@ -4,6 +4,7 @@ <MkFolder> <template #label>{{ i18n.ts.makeFollowManuallyApprove }}</template> + <template #icon><i class="ti ti-lock"></i></template> <template #suffix>{{ isLocked ? i18n.ts.on : i18n.ts.off }}</template> <MkSwitch v-model="isLocked">{{ i18n.ts.makeFollowManuallyApprove }}<template #caption>{{ i18n.ts.lockedAccountInfo }}</template></MkSwitch> @@ -11,6 +12,7 @@ <MkFolder> <template #label>{{ i18n.ts.hideOnlineStatus }}</template> + <template #icon><i class="ti ti-eye-off"></i></template> <template #suffix>{{ hideOnlineStatus ? i18n.ts.on : i18n.ts.off }}</template> <MkSwitch v-model="hideOnlineStatus">{{ i18n.ts.hideOnlineStatus }}<template #caption>{{ i18n.ts.hideOnlineStatusDescription }}</template></MkSwitch> @@ -18,6 +20,7 @@ <MkFolder> <template #label>{{ i18n.ts.noCrawle }}</template> + <template #icon><i class="ti ti-world-x"></i></template> <template #suffix>{{ noCrawle ? i18n.ts.on : i18n.ts.off }}</template> <MkSwitch v-model="noCrawle">{{ i18n.ts.noCrawle }}<template #caption>{{ i18n.ts.noCrawleDescription }}</template></MkSwitch> @@ -25,6 +28,7 @@ <MkFolder> <template #label>{{ i18n.ts.preventAiLearning }}</template> + <template #icon><i class="ti ti-photo-shield"></i></template> <template #suffix>{{ preventAiLearning ? i18n.ts.on : i18n.ts.off }}</template> <MkSwitch v-model="preventAiLearning">{{ i18n.ts.preventAiLearning }}<template #caption>{{ i18n.ts.preventAiLearningDescription }}</template></MkSwitch> |