Browse Source

chore: lint

pull/7001/head
Pranav C 10 months ago
parent
commit
d6135684f5
  1. 2
      packages/nc-gui/components/smartsheet/header/Menu.vue
  2. 2
      packages/nc-gui/components/smartsheet/toolbar/GroupByMenu.vue
  3. 2
      packages/nc-gui/components/virtual-cell/components/ListItems.vue
  4. 4
      packages/nocodb/src/services/api-docs/swaggerV2/getSchemas.ts

2
packages/nc-gui/components/smartsheet/header/Menu.vue

@ -1,5 +1,5 @@
<script lang="ts" setup>
import type { ColumnReqType, ColumnType } from 'nocodb-sdk'
import type { ColumnReqType } from 'nocodb-sdk'
import { RelationTypes, UITypes, isLinksOrLTAR } from 'nocodb-sdk'
import {
ActiveViewInj,

2
packages/nc-gui/components/smartsheet/toolbar/GroupByMenu.vue

@ -1,6 +1,6 @@
<script setup lang="ts">
import type { ColumnType, LinkToAnotherRecordType, LookupType } from 'nocodb-sdk'
import { RelationTypes, UITypes } from 'nocodb-sdk'
import { UITypes } from 'nocodb-sdk'
import {
ActiveViewInj,
IsLockedInj,

2
packages/nc-gui/components/virtual-cell/components/ListItems.vue

@ -1,5 +1,5 @@
<script lang="ts" setup>
import { RelationTypes, UITypes, isLinksOrLTAR, isSystemColumn } from 'nocodb-sdk'
import { RelationTypes, isLinksOrLTAR, isSystemColumn } from 'nocodb-sdk'
import type { ColumnType, LinkToAnotherRecordType } from 'nocodb-sdk'
import InboxIcon from '~icons/nc-icons/inbox'
import {

4
packages/nocodb/src/services/api-docs/swaggerV2/getSchemas.ts

@ -1,4 +1,4 @@
import { getModelSchemas, getViewSchemas } from './templates/schemas';
import { getModelSchemas } from './templates/schemas';
import type { Base, Model } from '~/models';
import type { SwaggerColumn } from './getSwaggerColumnMetas';
@ -9,7 +9,7 @@ export default async function getSchemas(
{
base,
model,
columns
columns,
}: {
base: Base;
model: Model;

Loading…
Cancel
Save