forked from geolba/tethys.backend
- add controlled geoera vocabular for tethys keywords
- add new SearchCategoryAutocomplete.vue for autocomplete search with filtered categories - npm updates
This commit is contained in:
parent
440fdb9fa7
commit
092a8a1c12
8 changed files with 562 additions and 99 deletions
|
@ -201,7 +201,11 @@ export default class DatasetController {
|
|||
}),
|
||||
subjects: schema.array([rules.minLength(3)]).members(
|
||||
schema.object().members({
|
||||
value: schema.string({ trim: true }, [rules.minLength(3), rules.maxLength(255)]),
|
||||
value: schema.string({ trim: true }, [
|
||||
rules.minLength(3),
|
||||
rules.maxLength(255),
|
||||
// rules.unique({ table: 'dataset_subjects', column: 'value' }),
|
||||
]),
|
||||
// type: schema.enum(Object.values(TitleTypes)),
|
||||
language: schema.string({ trim: true }, [
|
||||
rules.minLength(2),
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue