Browse Source

fix(nc-gui): trigger useKanbanViewStoreOrThrow only in kanban view

pull/4454/head
Wing-Kam Wong 2 years ago
parent
commit
19f8fd61fa
  1. 3
      packages/nc-gui/composables/useExpandedFormStore.ts

3
packages/nc-gui/composables/useExpandedFormStore.ts

@ -46,8 +46,6 @@ const [useProvideExpandedFormStore, useExpandedFormStore] = useInjectionState((m
const activeView = inject(ActiveViewInj, ref())
const { addOrEditStackRow } = useKanbanViewStoreOrThrow()
const { sharedView } = useSharedView()
// getters
@ -197,6 +195,7 @@ const [useProvideExpandedFormStore, useExpandedFormStore] = useInjectionState((m
}
if (activeView.value?.type === ViewTypes.KANBAN) {
const { addOrEditStackRow } = useKanbanViewStoreOrThrow()
addOrEditStackRow(row.value, isNewRow)
}

Loading…
Cancel
Save