Added more info and control to settings page

This commit is contained in:
frikky
2021-10-23 16:59:08 +02:00
parent 885c99c8e4
commit 9ff574623e
4 changed files with 96 additions and 82 deletions
+14 -9
View File
@@ -1769,7 +1769,7 @@ const Workflows = (props) => {
}
return obj;
});
})
workflowData =
<DataGrid
color="primary"
@@ -2113,14 +2113,19 @@ const Workflows = (props) => {
</div>
<div style={{marginTop: 15,}} />
{view === "grid" ?
<Grid container spacing={4} style={paperAppContainer}>
<NewWorkflowPaper />
{filteredWorkflows.map((data, index) => {
return (
<WorkflowPaper key={index} data={data} />
)
})}
</Grid>
<span>
<div style={{display: "flex"}}>
<img style={{height: 50, width: 50}} alt="" src="" />
</div>
<Grid container spacing={4} style={paperAppContainer}>
<NewWorkflowPaper />
{filteredWorkflows.map((data, index) => {
return (
<WorkflowPaper key={index} data={data} />
)
})}
</Grid>
</span>
:
<WorkflowListView />
}