Skip to content
Snippets Groups Projects
Unverified Commit 8ddae83c authored by syuilo's avatar syuilo Committed by GitHub
Browse files

fix MkUserSetupDialog.Privacy.vue

parent 1cc106b8
No related branches found
No related tags found
No related merge requests found
......@@ -37,8 +37,8 @@ let hideOnlineStatus = ref(false);
let noCrawle = ref(false);
let preventAiLearning = ref(true);
watch(isLocked, () => {
os.apiWithDialog('i/update', {
watch([isLocked, hideOnlineStatus, noCrawle, preventAiLearning], () => {
os.api('i/update', {
isLocked: !!isLocked.value,
hideOnlineStatus: !!hideOnlineStatus.value,
noCrawle: !!noCrawle.value,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment