Skip to content

Commit 8269440

Browse files
unrelated to this PR; remove html tags from message which is rendered as is
We changed `FormError` to not use `v-html` in commit 1b01f86 which broke this.
1 parent 3e226ae commit 8269440

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/components/Form/utilities.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ export function validateInputs(index, values, allowEmptyValueOnRequiredInput = f
154154
} else if (batchN !== n) {
155155
return [
156156
inputId,
157-
`Please make sure that you select the same number of inputs for all batch mode fields. This field contains <b>${n}</b> selection(s) while a previous field contains <b>${batchN}</b>.`,
157+
`Please make sure that you select the same number of inputs for all batch mode fields. This field contains ${n} selection(s) while a previous field contains ${batchN}.`,
158158
];
159159
}
160160
}

0 commit comments

Comments
 (0)