mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 07:16:40 +00:00
chore(nc-gui): lint
This commit is contained in:
@@ -109,7 +109,7 @@ export default function convertCellData(
|
||||
attachments.push(attachment)
|
||||
}
|
||||
|
||||
// Todo: on paste file add it don't replace
|
||||
// Todo: on paste file add it don't replace
|
||||
if (oldAttachments.length && !attachments.length) {
|
||||
return undefined
|
||||
} else if (value && attachments.length) {
|
||||
|
||||
@@ -1,16 +1,6 @@
|
||||
import type { MaybeRef } from '@vueuse/core'
|
||||
import dayjs from 'dayjs'
|
||||
import type {
|
||||
AIRecordType,
|
||||
AttachmentType,
|
||||
ColumnType,
|
||||
LinkToAnotherRecordType,
|
||||
PaginatedType,
|
||||
TableType,
|
||||
UserFieldRecordType,
|
||||
ViewType,
|
||||
} from 'nocodb-sdk'
|
||||
import { ColumnHelper, UITypes, isDateMonthFormat, isSystemColumn, isVirtualCol, populateUniqueFileName } from 'nocodb-sdk'
|
||||
import type { AttachmentType, ColumnType, LinkToAnotherRecordType, PaginatedType, TableType, ViewType } from 'nocodb-sdk'
|
||||
import { ColumnHelper, UITypes, isSystemColumn, isVirtualCol, populateUniqueFileName } from 'nocodb-sdk'
|
||||
import { parse } from 'papaparse'
|
||||
import type { Ref } from 'vue'
|
||||
import { computed } from 'vue'
|
||||
@@ -157,7 +147,7 @@ export function useMultiSelect(
|
||||
}
|
||||
|
||||
const valueToCopy = (rowObj: Row, columnObj: ColumnType) => {
|
||||
let textToCopy = (columnObj.title && rowObj.row[columnObj.title]) || ''
|
||||
const textToCopy = (columnObj.title && rowObj.row[columnObj.title]) || ''
|
||||
|
||||
return ColumnHelper.parseValue(textToCopy, {
|
||||
col: columnObj,
|
||||
|
||||
Reference in New Issue
Block a user