Updated code generator for Shuffle

This commit is contained in:
frikky
2020-06-14 18:40:55 +02:00
parent 76ce2bddee
commit d2d89d0bb9
6 changed files with 11 additions and 14 deletions
+2 -1
View File
@@ -2281,6 +2281,7 @@ const AngularWorkflow = (props) => {
rows="5"
color="primary"
defaultValue={data.value}
type={placeholder.includes("***") ? "password" : "text"}
placeholder={placeholder}
onChange={(event) => {
changeActionParameter(event, count)
@@ -2585,7 +2586,7 @@ const AngularWorkflow = (props) => {
: null*/}
<Divider style={{marginTop: "20px", height: "1px", width: "100%", backgroundColor: "rgb(91, 96, 100)"}}/>
<div style={{flex: "6", marginTop: "20px"}}>
<div>
<div style={{marginBottom: 5}}>
<b>Actions</b>
</div>
<Select
+1 -1
View File
@@ -1020,7 +1020,7 @@ const AppCreator = (props) => {
// Url verification
if (currentAction.url.length === 0) {
errormessage.push("URL path can't be empty.")
} else if (!currentAction.url.startsWith("/")) {
} else if (!currentAction.url.startsWith("/") && baseUrl.length > 0) {
errormessage.push("URL must start with /")
}