Skip to content

Commit

Permalink
Merge pull request #432 from ProcessMaker/bugfix/FOUR-14272
Browse files Browse the repository at this point in the history
FOUR-14272: [next] Required field asterisk is not being shown if the field is inside two multicolumns
  • Loading branch information
ryancooley authored Aug 9, 2024
2 parents fed238a + 0131d18 commit 2729f22
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 2729f22

Please sign in to comment.