Fixed subflow selection with autocomplete mechanism

This commit is contained in:
frikky
2021-12-21 01:28:29 +01:00
parent 76b156750d
commit b9d30419fa
6 changed files with 321 additions and 206 deletions
+2 -1
View File
@@ -1000,6 +1000,7 @@ const ParsedAction = (props) => {
color="secondary"
style={{justifyContent: "flex-start", textAlign: "left", textTransform: "none", width: "100%",}}
fullWidth
disabled={selectedAction.description === undefined || selectedAction.description === null || selectedAction.description.length === 0}
onClick={() => {
setHiddenDescription(!hiddenDescription)
}}
@@ -2654,7 +2655,7 @@ const ParsedAction = (props) => {
option === undefined ||
option === null ||
option.name === undefined ||
option.name === undefined
option.name === null
) {
return null;
}