You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following line in the utility module 'plugins/utils/update.ts' doesn't take into account any cases where $n might exist within the the file for example when using RegExp.$1 and outputs invalid syntax.
The following line in the utility module 'plugins/utils/update.ts' doesn't take into account any cases where
$n
might exist within the the file for example when using RegExp.$1 and outputs invalid syntax.A potential fix would be to escaping any dollar signs within the printedNextNode
printedNextNode.replace(/\$/g, '$$$$')
The text was updated successfully, but these errors were encountered: