mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
Use allow null to validate payload on submit
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
/>
|
||||
<span @click="toggle">
|
||||
{{ field.name }}
|
||||
<v-icon class="required" sup name="star" v-if="field.required" />
|
||||
<v-icon class="required" sup name="star" v-if="field.schema && field.schema.is_nullable === false" />
|
||||
<v-icon v-if="!disabled" class="ctx-arrow" :class="{ active }" name="arrow_drop_down" />
|
||||
</span>
|
||||
</div>
|
||||
|
||||
@@ -81,7 +81,8 @@
|
||||
"empty": "Value has to be empty",
|
||||
"nempty": "Value can't be empty",
|
||||
"null": "Value has to be null",
|
||||
"nnull": "Value can't be null"
|
||||
"nnull": "Value can't be null",
|
||||
"required": "Value is required"
|
||||
},
|
||||
|
||||
"all_access": "All Access",
|
||||
|
||||
Reference in New Issue
Block a user