Added new components to replace old for Workflow Discovery
This commit is contained in:
@@ -12043,7 +12043,7 @@ const AngularWorkflow = (defaultprops) => {
|
||||
: 0;
|
||||
|
||||
const timestamp = new Date(data.started_at * 1000)
|
||||
.toISOString()
|
||||
.toLocaleString("en-GB")
|
||||
.split(".")[0]
|
||||
.split("T")
|
||||
.join(" ");
|
||||
@@ -12360,7 +12360,7 @@ const AngularWorkflow = (defaultprops) => {
|
||||
<b>Started </b>
|
||||
</Typography>
|
||||
<Typography variant="body1" color="textSecondary">
|
||||
{new Date(executionData.started_at * 1000).toISOString()}
|
||||
{new Date(executionData.started_at * 1000).toLocaleString("en-GB")}
|
||||
</Typography>
|
||||
</div>
|
||||
) : null}
|
||||
@@ -12374,7 +12374,7 @@ const AngularWorkflow = (defaultprops) => {
|
||||
<b>Finished </b>
|
||||
</Typography>
|
||||
<Typography variant="body1" color="textSecondary">
|
||||
{new Date(executionData.completed_at * 1000).toISOString()}
|
||||
{new Date(executionData.completed_at * 1000).toLocaleString("en-GB")}
|
||||
</Typography>
|
||||
</div>
|
||||
) : null}
|
||||
|
||||
@@ -297,7 +297,7 @@ const LoginDialog = (props) => {
|
||||
{loginInfo === undefined ||
|
||||
loginInfo === null ||
|
||||
loginInfo.length === 0 ? null : (
|
||||
<div style={{ marginTop: "10px" }}>Response: {loginInfo}</div>
|
||||
<div style={{ marginTop: "10px" }}>Database Response: {loginInfo}</div>
|
||||
)}
|
||||
<CircularProgress color="secondary" style={{ color: "white" }} />
|
||||
|
||||
|
||||
Reference in New Issue
Block a user