Browse Source

chore(gui-v2): lint

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/3005/head
Pranav C 2 years ago
parent
commit
f454422d39
  1. 6
      packages/nc-gui-v2/components/smartsheet-header/VirtualCell.vue

6
packages/nc-gui-v2/components/smartsheet-header/VirtualCell.vue

@ -1,12 +1,11 @@
<script setup lang="ts">
import { substituteColumnIdWithAliasInFormula } from 'nocodb-sdk'
import type { ColumnType, FormulaType, LinkToAnotherRecordType, LookupType, RollupType } from 'nocodb-sdk'
import type { ColumnType, FormulaType, LinkToAnotherRecordType, LookupType, RollupType, TableType } from 'nocodb-sdk'
import { toRef } from 'vue'
import { $computed } from 'vue/macros'
import type { Ref } from 'vue'
import { useMetas } from '~/composables'
import { ColumnInj, MetaInj } from '~/context'
import type { TableType } from 'nocodb-sdk'
import type { Ref } from 'vue'
import { provide, useProvideColumnCreateStore } from '#imports'
const props = defineProps<{ column: ColumnType & { meta: any } }>()
@ -75,7 +74,6 @@ const tooltipMsg = computed(() => {
return ''
})
useProvideColumnCreateStore(meta as Ref<TableType>, column)
</script>

Loading…
Cancel
Save