chore(nc-gui): lint

This commit is contained in:
Ramesh Mane
2025-09-08 17:24:04 +00:00
parent ff03f423d1
commit 644a259008
2 changed files with 2 additions and 4 deletions

View File

@@ -48,8 +48,6 @@ const isLoadingGetLinkedSources = ref(false)
const tableWrapper = ref<HTMLDivElement>()
const titleHeaderCellRef = ref<HTMLDivElement>()
const orderBy = ref<Partial<Record<SortFields, 'asc' | 'desc' | undefined>>>({})
const localCollaborators = ref<User[] | UserType[]>([])
@@ -290,7 +288,7 @@ const columns = [
},
] as NcTableColumnProps[]
const customRow = (record: Record<string, any>, recordIndex: number) => ({
const customRow = (record: Record<string, any>) => ({
onclick: () => {
openEditIntegration(record)
},