mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 23:46:51 +00:00
chore(nc-gui): bootstrap & lint
This commit is contained in:
@@ -2,7 +2,15 @@ import type { Ref } from 'vue'
|
||||
import { computed } from 'vue'
|
||||
import dayjs from 'dayjs'
|
||||
import type { MaybeRef } from '@vueuse/core'
|
||||
import type { AttachmentType, ColumnType, LinkToAnotherRecordType, PaginatedType, TableType, UserFieldRecordType, ViewType } from 'nocodb-sdk'
|
||||
import type {
|
||||
AttachmentType,
|
||||
ColumnType,
|
||||
LinkToAnotherRecordType,
|
||||
PaginatedType,
|
||||
TableType,
|
||||
UserFieldRecordType,
|
||||
ViewType,
|
||||
} from 'nocodb-sdk'
|
||||
import { UITypes, dateFormats, isDateMonthFormat, isSystemColumn, isVirtualCol, timeFormats } from 'nocodb-sdk'
|
||||
import { parse } from 'papaparse'
|
||||
import type { Cell } from './cellRange'
|
||||
@@ -984,7 +992,7 @@ export function useMultiSelect(
|
||||
) => {
|
||||
if (paginationDataRef.value?.pageSize === pg?.pageSize) {
|
||||
if (paginationDataRef.value?.page !== pg?.page) {
|
||||
await changePage?.(pg?.page!)
|
||||
await changePage?.(pg?.page)
|
||||
}
|
||||
const pasteRowPk = extractPkFromRow(row.row, meta.value?.columns as ColumnType[])
|
||||
const rowObj = unref(data)[activeCell.row]
|
||||
|
||||
Reference in New Issue
Block a user