Skip to content

Commit

Permalink
Merge pull request #2265 from IgniteUI/alert-autofix-26
Browse files Browse the repository at this point in the history
Fix code scanning alert no. 26: Inefficient regular expression
  • Loading branch information
ChronosSF authored Nov 6, 2024
2 parents b6781ef + 872fd25 commit 4b9798f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/modules/infragistics.templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
/* type="RegExp" Matches any substitution element in the template that is to be encoded before rendering
Use $.ig.regExp.sub.exec(tmpl) in order to get the substitution element in the tmpl string
*/
sub: /\$\{(([\w\$\-]+(\.|\s)?[\w\$\-]*)+)\}/,
sub: /\$\{([\w\$\-]+(?:\.[\w\$\-]+|\s[\w\$\-]+)*)\}/,
/* type="RegExp" Matches any substitution element in the template that is to be rendered as it is
Use $.ig.regExp.sub.exec(tmpl) in order to get the substitution element in the tmpl string
*/
Expand Down

0 comments on commit 4b9798f

Please sign in to comment.