mirror of
https://github.com/directus/directus.git
synced 2026-02-16 23:51:50 -05:00
* Add conditions field to directus_fields * Add conditions configuration * Apply conditional overrides * Handle conditions in nested groups * Fix reverse mutating conditions * Start on filter setup interface * Move field types/constants to shared * [WIP] Updated client side filter validation * Support logical operators in client validation step * Use new validation util in conditions check * Add nesting in filter seutp * Add filter rule setup configurator * Fixes that should've been done in the merge * Strip out filter-settings interface TBD in a new PR * Move browser to index
13 lines
309 B
TypeScript
13 lines
309 B
TypeScript
import { defineInterface } from '@directus/shared/utils';
|
|
import InterfaceSystemLanguage from './system-language.vue';
|
|
|
|
export default defineInterface({
|
|
id: 'system-language',
|
|
name: '$t:language',
|
|
icon: 'translate',
|
|
component: InterfaceSystemLanguage,
|
|
system: true,
|
|
types: ['string'],
|
|
options: [],
|
|
});
|