Browse Source

chore: lint

pull/7558/head
Ramesh Mane 5 months ago
parent
commit
6154811253
  1. 3
      packages/nc-gui/composables/useMultiSelect/index.ts
  2. 1
      packages/nocodb/src/db/BaseModelSqlv2.ts

3
packages/nc-gui/composables/useMultiSelect/index.ts

@ -27,7 +27,6 @@ import {
useEventListener,
useGlobal,
useI18n,
useMetas,
useUndoRedo,
} from '#imports'
@ -59,8 +58,6 @@ export function useMultiSelect(
const { copy } = useCopy()
const { getMeta } = useMetas()
const { appInfo } = useGlobal()
const { isMysql, isPg } = useBase()

1
packages/nocodb/src/db/BaseModelSqlv2.ts

@ -1380,7 +1380,6 @@ class BaseModelSqlv2 {
qb.limit(+rest?.limit || 25);
}
qb.offset(selectAllRecords ? 0 : +rest?.offset || 0);
const children = await this.execAndParse(qb, await childTable.getColumns());
const proto = await (

Loading…
Cancel
Save