Made code editor try it out work properly

This commit is contained in:
Frikky
2025-04-04 13:06:33 +02:00
parent 2714bfc119
commit c462ef584f
6 changed files with 380 additions and 355 deletions
+4 -1
View File
@@ -2916,7 +2916,10 @@ const ParsedAction = (props) => {
color="primary"
id="checkbox-search"
variant="body1"
style={theme.palette.textFieldStyle}
style={{
...theme.palette.textFieldStyle,
border: selectedAction?.parent_controlled === true && workflow?.parentorg_workflow?.length > 0 ? `1px dotted ${theme.palette.distributionColor}` : "inherit",
}}
label={isIntegration ? "Choose a category" : "Find Actions"}
variant="outlined"
name={`disable_autocomplete_${Math.random()}`}
+10 -2
View File
@@ -19702,7 +19702,11 @@ const AngularWorkflow = (defaultprops) => {
workflow.public
|| executionRequestStarted
}
style={{ height: boxSize, width: boxSize + 5, backgroundColor: green, }}
style={{
height: boxSize,
width: boxSize + 5,
backgroundColor: green,
}}
color="primary"
variant="contained"
onClick={() => {
@@ -19733,7 +19737,7 @@ const AngularWorkflow = (defaultprops) => {
style={{
borderTop: "1px solid rgba(74, 74, 74, 1)",
borderBottom: "1px solid rgba(74, 74, 74, 1)",
height: buttonHeights,
height: buttonHeights+2,
}}
>
{executionButton}
@@ -19772,6 +19776,10 @@ const AngularWorkflow = (defaultprops) => {
height: buttonHeights + 2,
marginTop: -1,
border: "none",
// Remove left side borderRadius
borderTopLeftRadius: 0,
borderBottomLeftRadius: 0,
}
}}
disabled={workflow.public}