Improve execution speed from app side
This commit is contained in:
@@ -2633,7 +2633,7 @@ const AngularWorkflow = (props) => {
|
||||
},
|
||||
endAdornment: (
|
||||
<InputAdornment position="end">
|
||||
<Tooltip color="primary" title="Autocomplete text" placement="top">
|
||||
<Tooltip title="Autocomplete text" placement="top">
|
||||
<AddCircleOutlineIcon style={{cursor: "pointer"}} onClick={() => {
|
||||
setShowDropdownNumber(count)
|
||||
setShowDropdown(true)
|
||||
@@ -2998,6 +2998,8 @@ const AngularWorkflow = (props) => {
|
||||
paddingLeft: 10,
|
||||
minHeight: "100%",
|
||||
zIndex: 1000,
|
||||
resize: "horizontal",
|
||||
overflow: "auto",
|
||||
}
|
||||
|
||||
const defineStartnode = () => {
|
||||
|
||||
@@ -954,9 +954,9 @@ const Workflows = (props) => {
|
||||
<Divider style={{marginBottom: "10px", height: "1px", width: "100%", backgroundColor: dividerColor}}/>
|
||||
|
||||
<div style={scrollStyle}>
|
||||
{workflows.map(data => {
|
||||
{workflows.map((data, index) => {
|
||||
return (
|
||||
<WorkflowPaper data={data} />
|
||||
<WorkflowPaper key={index} data={data} />
|
||||
)
|
||||
})}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user