Improve execution speed from app side

This commit is contained in:
frikky
2020-07-17 10:48:33 +02:00
parent 8b1565e068
commit 263bbbd987
6 changed files with 302 additions and 181 deletions
+3 -1
View File
@@ -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 = () => {
+2 -2
View File
@@ -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>