Skip to content

Commit

Permalink
Fix hiding fields of custom categories
Browse files Browse the repository at this point in the history
  • Loading branch information
tkleinke committed Nov 13, 2023
1 parent 050df4e commit ac24f84
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ export class FieldEditorModalComponent extends ConfigurationEditorModalComponent

return this.new
|| this.getCustomFieldDefinition()?.inputType !== this.getClonedFieldDefinition()?.inputType
|| !equal(this.getCustomFormDefinition().hidden)(this.getClonedFormDefinition().hidden)
|| !equal(this.getCustomFormDefinition().hidden ?? [])(this.getClonedFormDefinition().hidden ?? [])
|| this.isValuelistChanged()
|| this.isConstraintIndexedChanged()
|| this.isSubfieldsChanged()
Expand Down

0 comments on commit ac24f84

Please sign in to comment.