Minor subflow fix: label transition

This commit is contained in:
monilprajapati
2024-07-05 14:56:42 +05:30
parent 18803dba03
commit 0e16815872
+11 -1
View File
@@ -13160,7 +13160,7 @@ const releaseToConnectLabel = "Release to Connect"
<Autocomplete
id="subflow_search"
autoHighlight
freeSolo
freeSolo
value={subworkflow}
classes={{ inputRoot: classes.inputRoot }}
ListboxProps={{
@@ -13259,6 +13259,11 @@ const releaseToConnectLabel = "Release to Connect"
backgroundColor: theme.palette.inputColor,
borderRadius: theme.palette.borderRadius,
}}
sx={{
'& .MuiInputLabel-root': {
transition: 'none', // Disable the animation for the label
},
}}
{...params}
label="Find your workflow"
variant="outlined"
@@ -13365,6 +13370,11 @@ const releaseToConnectLabel = "Release to Connect"
backgroundColor: theme.palette.inputColor,
borderRadius: theme.palette.borderRadius,
}}
sx={{
'& .MuiInputLabel-root': {
transition: 'none', // Disable the animation for the label
},
}}
{...params}
label="Select a start-node (optional)"
variant="outlined"