Skip to content

Commit

Permalink
fix(admin-ui): fixes in attribute form attributeValidation
Browse files Browse the repository at this point in the history
  • Loading branch information
jv18creator committed Jul 31, 2023
1 parent f0b12af commit 46ac506
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion admin-ui/plugins/schema/components/Person/AttributeForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,10 @@ function AttributeForm(props) {
jansHideOnDiscovery: item.jansHideOnDiscovery,
oxMultiValuedAttribute: item.oxMultiValuedAttribute,
attributeValidation: item.attributeValidation,
scimCustomAttr: item.scimCustomAttr
scimCustomAttr: item.scimCustomAttr,
maxLength: item.attributeValidation.maxLength,
minLength: item.attributeValidation.minLength,
regexp: item.attributeValidation.regexp
}
}

Expand Down

0 comments on commit 46ac506

Please sign in to comment.