Browse Source

chore: lint

pull/7001/head
Pranav C 12 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> <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 { RelationTypes, UITypes, isLinksOrLTAR } from 'nocodb-sdk'
import { import {
ActiveViewInj, ActiveViewInj,

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

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

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

@ -1,5 +1,5 @@
<script lang="ts" setup> <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 type { ColumnType, LinkToAnotherRecordType } from 'nocodb-sdk'
import InboxIcon from '~icons/nc-icons/inbox' import InboxIcon from '~icons/nc-icons/inbox'
import { 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 { Base, Model } from '~/models';
import type { SwaggerColumn } from './getSwaggerColumnMetas'; import type { SwaggerColumn } from './getSwaggerColumnMetas';
@ -9,7 +9,7 @@ export default async function getSchemas(
{ {
base, base,
model, model,
columns columns,
}: { }: {
base: Base; base: Base;
model: Model; model: Model;

Loading…
Cancel
Save