Browse Source

refactor(gui-v2): linting

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/2716/head
Pranav C 2 years ago
parent
commit
eb18e318c8
  1. 6
      packages/nc-gui-v2/components/smartsheet-toolbar/FieldsMenu.vue
  2. 6
      packages/nc-gui-v2/composables/useViewColumns.ts

6
packages/nc-gui-v2/components/smartsheet-toolbar/FieldsMenu.vue

@ -375,8 +375,10 @@ show_system_fields
</span>
</template>
</v-checkbox> -->
<input type="checkbox" v-model="showSystemFields" :id="`${activeView?.id}-show-system-fields`"/>
<label :for="`${activeView.id}-show-system-fields`" class="caption text-sm ml-2">{{ $t('activity.showSystemFields') }}</label>
<input :id="`${activeView?.id}-show-system-fields`" v-model="showSystemFields" type="checkbox" />
<label :for="`${activeView.id}-show-system-fields`" class="caption text-sm ml-2">{{
$t('activity.showSystemFields')
}}</label>
</v-list-item>
<v-list-item dense class="mt-2 list-btn mb-3">
<v-btn small class="elevation-0 grey--text text-sm text-capitalize" @click.stop="showAll">

6
packages/nc-gui-v2/composables/useViewColumns.ts

@ -1,4 +1,4 @@
import { isSystemColumn } from "nocodb-sdk";
import { isSystemColumn } from 'nocodb-sdk'
import type { ColumnType, FormType, GalleryType, GridType, TableType } from 'nocodb-sdk'
import type { Ref } from 'vue'
import { useNuxtApp } from '#app'
@ -20,7 +20,6 @@ export default function (
const filterQuery = ref('')
const { $api } = useNuxtApp()
const loadViewColumns = async () => {
@ -99,7 +98,6 @@ export default function (
const filteredFieldList = computed(() => {
return fields.value?.filter((field) => {
// hide system columns if not enabled
if (!showSystemFields.value && isSystemColumn(metaColumnById?.value?.[field.fk_column_id as string])) {
return false
@ -109,7 +107,6 @@ export default function (
})
})
const sortedAndFilteredFields = computed<ColumnType[]>(() => {
return (fields?.value
?.filter((c) => {
@ -123,7 +120,6 @@ export default function (
?.map((c) => metaColumnById?.value?.[c.fk_column_id as string]) || []) as ColumnType[]
})
return {
fields,
loadViewColumns,

Loading…
Cancel
Save