1
0
Fork 0
mirror of synced 2024-06-26 10:00:41 +12:00

Fix for builder loading flow item header.

This commit is contained in:
mike12345567 2022-06-29 13:34:36 +01:00
parent afda023fc4
commit bfd9a29104

View file

@ -29,6 +29,9 @@
}
function updateStatus(results, isTrigger) {
if (!results) {
return {}
}
if (results.outputs?.status?.toLowerCase() === "stopped") {
return { yellow: true, message: "Stopped" }
} else if (results.outputs?.success || isTrigger) {