Skip to content

Commit

Permalink
fix MkUserSetupDialog.Privacy.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
syuilo authored May 11, 2023
1 parent 1cc106b commit 8ddae83
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 8ddae83

Please sign in to comment.