Browse Source

chore(nc-gui): lint

pull/9986/head
Ramesh Mane 2 days ago
parent
commit
06d4febe05
  1. 2
      packages/nc-gui/components/smartsheet/column/ButtonOptions.vue
  2. 2
      packages/nc-gui/components/smartsheet/column/LongTextOptions.vue
  3. 2
      packages/nc-gui/components/smartsheet/column/UITypesOptionsWithSearch.vue

2
packages/nc-gui/components/smartsheet/column/ButtonOptions.vue

@ -365,7 +365,7 @@ const selectIcon = (icon: string) => {
isButtonIconDropdownOpen.value = false
}
const handleUpdateActionType = (type: ButtonActionsType) => {
const handleUpdateActionType = () => {
vModel.value.formula_raw = ''
}

2
packages/nc-gui/components/smartsheet/column/LongTextOptions.vue

@ -1,5 +1,5 @@
<script setup lang="ts">
import { columnTypeName, isAIPromptCol, UITypes, UITypesName } from 'nocodb-sdk'
import { UITypes, UITypesName, isAIPromptCol } from 'nocodb-sdk'
const props = defineProps<{
modelValue: any

2
packages/nc-gui/components/smartsheet/column/UITypesOptionsWithSearch.vue

@ -14,8 +14,6 @@ const searchQuery = ref('')
const { isMetaReadOnly } = useRoles()
const { isFeatureEnabled } = useBetaFeatureToggle()
const filteredOptions = computed(
() => options.value?.filter((c) => searchCompare([c.name, UITypesName[c.name]], searchQuery.value)) ?? [],
)

Loading…
Cancel
Save