mirror of
https://github.com/directus/directus.git
synced 2026-01-27 07:08:17 -05:00
Show hidden=undefined fields
This commit is contained in:
@@ -81,7 +81,7 @@ export default function useFormFields(fields: Ref<Field[]>) {
|
||||
formFields = formFields.filter((field) => {
|
||||
const hidden = field.system?.hidden;
|
||||
const systemFake = field.field.startsWith('$');
|
||||
return hidden === false && systemFake === false;
|
||||
return hidden !== true && systemFake === false;
|
||||
});
|
||||
|
||||
return formFields;
|
||||
|
||||
Reference in New Issue
Block a user