mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 14:36:56 +00:00
fix(nc-gui): console warnings
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user