Skip to content

Commit

Permalink
FOUR-14272:Required field asterisk is not being shown if the field is…
Browse files Browse the repository at this point in the history
… inside two multicolumns
  • Loading branch information
hjonathan committed Jul 30, 2024
1 parent 5204ff2 commit 0131d18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/mixins/validation.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default {
// Account for multicolumn components
source = source.$parent;
}
const check = get(source, variable);
const check = get(source, variable) || get(this.transientData, variable);

if (rule === "required_if") {
if (check == value) {
Expand Down

0 comments on commit 0131d18

Please sign in to comment.