chore(nc-gui): lint

This commit is contained in:
Ramesh Mane
2025-03-05 14:51:14 +00:00
parent 19b127e09b
commit daf3ecb473
3 changed files with 6 additions and 26 deletions

View File

@@ -1,14 +1,4 @@
import {
type AIRecordType,
ColumnHelper,
type ColumnType,
type LinkToAnotherRecordType,
type TableType,
UITypes,
type UserFieldRecordType,
isDateMonthFormat,
} from 'nocodb-sdk'
import dayjs from 'dayjs'
import { ColumnHelper, type ColumnType, type TableType } from 'nocodb-sdk'
export const valueToCopy = (
rowObj: Row,
@@ -21,7 +11,7 @@ export const valueToCopy = (
},
) => {
const { isPg, isMysql, meta, metas } = cb
let textToCopy = (columnObj.title && rowObj.row[columnObj.title]) || ''
const textToCopy = (columnObj.title && rowObj.row[columnObj.title]) || ''
return ColumnHelper.parseValue(textToCopy, {
col: columnObj,