Workflow fixes
This commit is contained in:
@@ -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)";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1649,7 +1649,7 @@ const CodeEditor = (props) => {
|
||||
</div>
|
||||
|
||||
{isFileEditor ? null :
|
||||
<div style={{flex: 1, marginLeft: 5, borderLeft: "1px solid rgba(255,255,255,0.3)", paddingLeft: 5, }}>
|
||||
<div style={{flex: 1, marginLeft: 5, borderLeft: "1px solid rgba(255,255,255,0.3)", paddingLeft: 5, overflow: "hidden", }}>
|
||||
<div>
|
||||
{isMobile ? null :
|
||||
<DialogTitle
|
||||
|
||||
Reference in New Issue
Block a user