Merge pull request #12934 from nocodb/nc-fix/sentry-errors-24-jan

Nc fix/sentry errors 24 jan
This commit is contained in:
Ramesh Mane
2026-01-24 13:39:21 +05:30
committed by GitHub
2 changed files with 4 additions and 0 deletions

View File

@@ -26,6 +26,8 @@ watch(files, (newFiles) => {
})
const onDrop = (files: File[], event: DragEvent) => {
if (!files || !ncIsArray(files)) return
tempFiles.value.push(...files)
event.preventDefault()
event.stopPropagation()

View File

@@ -11,6 +11,8 @@ const container = ref()
const { isUIAllowed } = useRoles()
const { $e } = useNuxtApp()
const { selectedDate, formattedData, formattedSideBarData, calendarRange, updateRowProperty, isSyncedFromColumn } =
useCalendarViewStoreOrThrow()