diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-10 11:27:07 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-10 11:27:07 +0900 |
| commit | b2007438451e0022044888af663ce361b23ec45f (patch) | |
| tree | 4fac5f34c9e0aed023eabe58f9bd81dda0c776b5 /packages/frontend/src/pages/settings/statusbar.vue | |
| parent | refactor(frontend): rename pizzax fields (diff) | |
| download | misskey-b2007438451e0022044888af663ce361b23ec45f.tar.gz misskey-b2007438451e0022044888af663ce361b23ec45f.tar.bz2 misskey-b2007438451e0022044888af663ce361b23ec45f.zip | |
refactor(frontend): rename store.set -> store.commit
Diffstat (limited to 'packages/frontend/src/pages/settings/statusbar.vue')
| -rw-r--r-- | packages/frontend/src/pages/settings/statusbar.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/settings/statusbar.vue b/packages/frontend/src/pages/settings/statusbar.vue index 2737af3aa4..7b09093c85 100644 --- a/packages/frontend/src/pages/settings/statusbar.vue +++ b/packages/frontend/src/pages/settings/statusbar.vue @@ -37,7 +37,7 @@ onMounted(() => { }); async function add() { - prefer.set('statusbars', [...statusbars.value, { + prefer.commit('statusbars', [...statusbars.value, { id: uuid(), type: null, black: false, |