fix(nc-gui): console warnings

This commit is contained in:
Ramesh Mane
2025-03-11 19:25:19 +00:00
parent f29b9bfc6e
commit 6e840015cc
20 changed files with 97 additions and 35 deletions

View File

@@ -31,7 +31,7 @@ const editable = inject(EditModeInj, ref(false))
const isGrid = inject(IsGridInj, ref(false))
const canvasSelectCell = inject(CanvasSelectCellInj)
const canvasSelectCell = inject(CanvasSelectCellInj, null)
const isForm = inject(IsFormInj, ref(false))
@@ -53,7 +53,7 @@ const open = ref<boolean>(false)
const tempDate = ref<dayjs.Dayjs | undefined>()
const canvasCellEventData = inject(CanvasCellEventDataInj)!
const canvasCellEventData = inject(CanvasCellEventDataInj, reactive<CanvasCellEventDataInjType>({}))
const localState = computed({
get() {