Skip to content

Commit b3ce124

Browse files
committed
check component key in both double and single quotes
1 parent fdecd82 commit b3ce124

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

packages/shared-components/src/formio/overrides/utils-overrides/utils-overrides.test.js

+10-3
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,16 @@ describe('utils-overrides', () => {
116116
});
117117
});
118118

119-
it('does not add null check to composite component key', () => {
120-
const code = "show = util.isBornBeforeYear(1964, 'container.fnr', submission);";
121-
expect(UtilsOverrides.sanitizeJavaScriptCode(code)).toBe(code);
119+
describe('composite component key inside expression', () => {
120+
it('is not null checked when wrapped in single qoutes', () => {
121+
const code = "show = utils.isBornBeforeYear(1964, 'container.fnr', submission);";
122+
expect(UtilsOverrides.sanitizeJavaScriptCode(code)).toBe(code);
123+
});
124+
125+
it('is not null checked when wrapped in double qoutes', () => {
126+
const code = 'show = utils.isBornBeforeYear(1964, "container.fnr", submission);';
127+
expect(UtilsOverrides.sanitizeJavaScriptCode(code)).toBe(code);
128+
});
122129
});
123130
});
124131

packages/shared-domain/src/utils/formio/sanitize-javascript-code.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function mapChainedLookups(text) {
3939
*/
4040
const arrayOfChainedLookups = text.match(/((\w+\.)+\w+\b)(?![(.])/g) || [];
4141
[...new Set(arrayOfChainedLookups)]
42-
.filter((exp) => !text.includes(`'${exp}'`))
42+
.filter((exp) => !text.includes(`'${exp}'`) && !text.includes(`"${exp}"`))
4343
.forEach((chainedLookup) => (mappedString = addNullChecksToChainedLookup(chainedLookup, mappedString)));
4444
return mappedString;
4545
}

0 commit comments

Comments
 (0)