From 09b8bda990f5be59fb03645d321adbd30990be23 Mon Sep 17 00:00:00 2001 From: dakkar Date: Mon, 7 Apr 2025 16:37:56 +0100 Subject: [PATCH] maybe improve/fix privacy settings search a bunch of label/markers/keywords had gone missing plus I've added those for our settings --- .../frontend/src/pages/settings/privacy.vue | 46 +++++++++---------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/packages/frontend/src/pages/settings/privacy.vue b/packages/frontend/src/pages/settings/privacy.vue index 8d8d8ae21c..b7a101af3d 100644 --- a/packages/frontend/src/pages/settings/privacy.vue +++ b/packages/frontend/src/pages/settings/privacy.vue @@ -64,10 +64,17 @@ SPDX-License-Identifier: AGPL-3.0-only + + + + + + + - {{ i18n.ts.makeIndexable }} - + + @@ -80,15 +87,8 @@ SPDX-License-Identifier: AGPL-3.0-only - {{ i18n.ts.enableRss }} - - - - - - - - + + @@ -198,12 +198,12 @@ SPDX-License-Identifier: AGPL-3.0-only - + - - + + @@ -214,9 +214,9 @@ SPDX-License-Identifier: AGPL-3.0-only
- {{ i18n.ts.rememberNoteVisibility }} + {{ i18n.ts.rememberNoteVisibility }} - + @@ -237,16 +237,16 @@ SPDX-License-Identifier: AGPL-3.0-only
- {{ i18n.ts.keepCw }} + {{ i18n.ts.keepCw }} - - + + - - + + @@ -289,6 +289,7 @@ const $i = ensureSignin(); const isLocked = ref($i.isLocked); const autoAcceptFollowed = ref($i.autoAcceptFollowed); const noCrawle = ref($i.noCrawle); +const preventAiLearning = ref($i.preventAiLearning); const noindex = ref($i.noindex); const enableRss = ref($i.enableRss); const isExplorable = ref($i.isExplorable); @@ -309,8 +310,6 @@ const computedAllowUnsignedFetch = computed(() => { } return instance.allowUnsignedFetch; }); - -const preventAiLearning = ref($i.preventAiLearning); const defaultNoteVisibility = prefer.model('defaultNoteVisibility'); const defaultNoteLocalOnly = prefer.model('defaultNoteLocalOnly'); const rememberNoteVisibility = prefer.model('rememberNoteVisibility'); @@ -358,6 +357,7 @@ function save() { isLocked: !!isLocked.value, autoAcceptFollowed: !!autoAcceptFollowed.value, noCrawle: !!noCrawle.value, + preventAiLearning: !!preventAiLearning.value, noindex: !!noindex.value, enableRss: !!enableRss.value, isExplorable: !!isExplorable.value,