mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-03 12:37:25 +00:00
fix(nc-gui): console warnings
This commit is contained in:
@@ -34,7 +34,7 @@ const active = computed(() => activeCell.value || isEditable.value || isForm.val
|
||||
const aselect = ref<typeof AntSelect>()
|
||||
|
||||
const isOpen = ref(false)
|
||||
const canvasSelectCell = inject(CanvasSelectCellInj)
|
||||
const canvasSelectCell = inject(CanvasSelectCellInj, null)
|
||||
|
||||
const isKanban = inject(IsKanbanInj, ref(false))
|
||||
|
||||
@@ -274,7 +274,7 @@ watch(
|
||||
},
|
||||
)
|
||||
|
||||
const canvasCellEventData = inject(CanvasCellEventDataInj)!
|
||||
const canvasCellEventData = inject(CanvasCellEventDataInj, reactive<CanvasCellEventDataInjType>({}))
|
||||
const isUnderLookup = inject(IsUnderLookupInj, ref(false))
|
||||
const isCanvasInjected = inject(IsCanvasInjectionInj, false)
|
||||
const isExpandedForm = inject(IsExpandedFormOpenInj, ref(false))
|
||||
|
||||
Reference in New Issue
Block a user