Browse Source

fix: i18n for Filter modal

pull/6519/head
Muhammed Mustafa 11 months ago
parent
commit
5fe0252af8
  1. 6
      packages/nc-gui/components/smartsheet/toolbar/ColumnFilter.vue

6
packages/nc-gui/components/smartsheet/toolbar/ColumnFilter.vue

@ -43,9 +43,11 @@ const { nestedLevel, parentId, autoSave, hookId, modelValue, showLoading, webHoo
const nested = computed(() => nestedLevel.value > 0)
const { t } = useI18n()
const logicalOps = [
{ value: 'and', text: 'AND' },
{ value: 'or', text: 'OR' },
{ value: 'and', text: t('general.and') },
{ value: 'or', text: t('general.or') },
]
const meta = inject(MetaInj, ref())

Loading…
Cancel
Save