diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-05-12 08:01:31 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-05-12 08:01:31 +0900 |
| commit | bb3c85d3a19bda46119f0ef5d4c8ccf257859eac (patch) | |
| tree | 56ae70301ef3179669dbc0a26c023c16a07681ca /packages/frontend/src/components | |
| parent | Update basic.cy.js (diff) | |
| parent | ci: fix missing branch (diff) | |
| download | sharkey-bb3c85d3a19bda46119f0ef5d4c8ccf257859eac.tar.gz sharkey-bb3c85d3a19bda46119f0ef5d4c8ccf257859eac.tar.bz2 sharkey-bb3c85d3a19bda46119f0ef5d4c8ccf257859eac.zip | |
Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop
Diffstat (limited to 'packages/frontend/src/components')
| -rw-r--r-- | packages/frontend/src/components/MkUserSetupDialog.Privacy.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/components/MkUserSetupDialog.Privacy.vue b/packages/frontend/src/components/MkUserSetupDialog.Privacy.vue index 4ed5c3ab00..5fc6fd4d2f 100644 --- a/packages/frontend/src/components/MkUserSetupDialog.Privacy.vue +++ b/packages/frontend/src/components/MkUserSetupDialog.Privacy.vue @@ -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, |