max 5 owners or tenants in field arry
This commit is contained in:
@@ -227,6 +227,7 @@ export default function BuildField(props) {
|
||||
formProps={props.props.props.props.form}
|
||||
parentField={props.parentField}
|
||||
parentFieldShowOnValue={props.parentFieldShowOnValue}
|
||||
maxSubField={props.maxSubField}
|
||||
/>
|
||||
);
|
||||
case "{9EF39988-22BB-4f0b-BBBE-64B5A3748AEE}":
|
||||
|
||||
@@ -34,6 +34,7 @@ export default function BuildRow(props) {
|
||||
var fieldtype = xpath.select("//@classid", doc);
|
||||
var validation = xpath.select("//@validation", doc);
|
||||
var maxFieldLength = xpath.select("//@maxFieldLength", doc);
|
||||
var maxSubField = xpath.select("//@maxsubfield", doc);
|
||||
var datafieldname = xpath.select("//@datafieldname", doc);
|
||||
var datafieldcontent = xpath.select(
|
||||
"//@datafieldcontent",
|
||||
@@ -74,6 +75,9 @@ export default function BuildRow(props) {
|
||||
maxFieldLength =
|
||||
!_.isEmpty(maxFieldLength) && maxFieldLength[0].value;
|
||||
|
||||
maxSubField =
|
||||
!_.isEmpty(maxSubField) && maxSubField[0].value;
|
||||
|
||||
parentField =
|
||||
!_.isEmpty(parentField) && parentField[0].value;
|
||||
|
||||
@@ -164,6 +168,7 @@ export default function BuildRow(props) {
|
||||
setFilesForAppeal={
|
||||
props.props.setFilesForAppeal
|
||||
}
|
||||
maxSubField={maxSubField}
|
||||
/>
|
||||
);
|
||||
// } else {
|
||||
|
||||
Reference in New Issue
Block a user