add a maxLength designers

This commit is contained in:
Ed Chalstrey 2022-06-01 16:01:09 +01:00
parent 663a910cc1
commit 61b2a40345

View File

@ -70,6 +70,7 @@ const TeamView: React.FunctionComponent<CategoryViewProps> = (props) => {
onChange={props.onChange} onChange={props.onChange}
tooltip={dataFields.designers.tooltip} tooltip={dataFields.designers.tooltip}
editableEntries={true} editableEntries={true}
maxLength={10}
/> />
</Fragment> </Fragment>
); );
@ -127,6 +128,7 @@ const TeamView: React.FunctionComponent<CategoryViewProps> = (props) => {
onChange={props.onChange} onChange={props.onChange}
tooltip={dataFields.designers.tooltip} tooltip={dataFields.designers.tooltip}
editableEntries={true} editableEntries={true}
maxLength={10}
/> />
</Fragment> </Fragment>
); );