Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions client/src/components/ProjectWizard/RuleInput/MultiInput.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,7 @@ const Input = props => {
value={props.value || ""}
onChange={props.onChange}
onBlur={handleBlur}
name={props.code}
id={props.code}
props={props.selectProps}
maxLength={props.maxStringLength}
autoComplete="off"
placeholder={value.length ? "Add another" : null}
Expand All @@ -113,6 +112,8 @@ const Input = props => {
// placeholder attribute is hard-coded, as I could not figure out how to pass props to the InputMask,
// and the only usage is for a required field on page 1 of wizard. (JCD)
placeholder={props.hasValue ? "optional" : "required"}
name={props.selectProps.name}
id={props.selectProps.id}
className={classes.textInput}
style={{
margin: 0,
Expand Down