mirror of
https://example.com
synced 2024-11-24 06:46:39 +09:00
fix(client/deck): カラムの増減がページをリロードするまで正しく反映されない問題を修正
Fix #8065
This commit is contained in:
parent
9b771baa5e
commit
c544e38f34
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ export default defineComponent({
|
|||
});
|
||||
|
||||
const columns = deckStore.reactiveState.columns;
|
||||
const layout = deckStore.reactiveState.layout.value;
|
||||
const layout = deckStore.reactiveState.layout;
|
||||
const menuIndicated = computed(() => {
|
||||
if ($i == null) return false;
|
||||
for (const def in menuDef) {
|
||||
|
|
Loading…
Reference in a new issue