Commit 82694408 authored by Ahmed Awan's avatar Ahmed Awan
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 1b01f86c which broke this.
parent 3e226aea
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -154,7 +154,7 @@ export function validateInputs(index, values, allowEmptyValueOnRequiredInput = f
            } else if (batchN !== n) {
                return [
                    inputId,
                    `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>.`,
                    `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}.`,
                ];
            }
        }