From 0131d18550ed56c148656f1625e581037df59d5b Mon Sep 17 00:00:00 2001 From: Henry Jonas Date: Tue, 30 Jul 2024 15:34:02 -0400 Subject: [PATCH] FOUR-14272:Required field asterisk is not being shown if the field is inside two multicolumns --- src/components/mixins/validation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/mixins/validation.js b/src/components/mixins/validation.js index 430083f..800982d 100644 --- a/src/components/mixins/validation.js +++ b/src/components/mixins/validation.js @@ -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) {