diff --git a/frontend/src/components/ParsedAction.jsx b/frontend/src/components/ParsedAction.jsx index 7342b03d..2246374d 100755 --- a/frontend/src/components/ParsedAction.jsx +++ b/frontend/src/components/ParsedAction.jsx @@ -665,9 +665,9 @@ const ParsedAction = (props) => { let regex = /(^|[^\\])\$/; if (regex.test(paramvalue)) { if(message.length > 0){ - message += "\nUse \"\\$\" instead of \"$\"."; + message += "\nUse \"\\$\" instead of \"$\" if you want to escape $ (1)"; }else{ - message = "Use \"\\$\" instead of \"$\" to escape variables."; + message = "Use \"\\$\" instead of \"$\" if you want to escape $ (2)"; } } } diff --git a/frontend/src/components/ShuffleCodeEditor1.jsx b/frontend/src/components/ShuffleCodeEditor1.jsx index 9669dfeb..d089f587 100644 --- a/frontend/src/components/ShuffleCodeEditor1.jsx +++ b/frontend/src/components/ShuffleCodeEditor1.jsx @@ -1649,7 +1649,7 @@ const CodeEditor = (props) => { {isFileEditor ? null : -