powr-sdk-web 4.1.10 → 4.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/tasks/index.js +7 -3
- package/package.json +1 -1
package/dist/tasks/index.js
CHANGED
|
@@ -945,7 +945,7 @@ var PowrBaseTasks = function PowrBaseTasks(_ref) {
|
|
|
945
945
|
fontSize: '0.8rem',
|
|
946
946
|
color: '#6b7280'
|
|
947
947
|
}
|
|
948
|
-
}, formatDate(execution.executedAt))),
|
|
948
|
+
}, formatDate(execution.executedAt))), /*#__PURE__*/_react["default"].createElement("div", {
|
|
949
949
|
style: {
|
|
950
950
|
fontSize: '0.8rem',
|
|
951
951
|
color: '#6b7280'
|
|
@@ -954,11 +954,15 @@ var PowrBaseTasks = function PowrBaseTasks(_ref) {
|
|
|
954
954
|
style: {
|
|
955
955
|
marginBottom: '4px'
|
|
956
956
|
}
|
|
957
|
-
}, /*#__PURE__*/_react["default"].createElement("strong", null, "Status:"), " ", execution.
|
|
957
|
+
}, /*#__PURE__*/_react["default"].createElement("strong", null, "Status:"), " ", execution.success ? '✅ Success' : '❌ Failed'), execution.results && execution.results.stepsExecuted && /*#__PURE__*/_react["default"].createElement("div", {
|
|
958
958
|
style: {
|
|
959
959
|
marginBottom: '4px'
|
|
960
960
|
}
|
|
961
|
-
}, /*#__PURE__*/_react["default"].createElement("strong", null, "Steps Executed:"), " ", execution.results.stepsExecuted), execution.
|
|
961
|
+
}, /*#__PURE__*/_react["default"].createElement("strong", null, "Steps Executed:"), " ", execution.results.stepsExecuted), execution.actionsExecuted !== undefined && /*#__PURE__*/_react["default"].createElement("div", {
|
|
962
|
+
style: {
|
|
963
|
+
marginBottom: '4px'
|
|
964
|
+
}
|
|
965
|
+
}, /*#__PURE__*/_react["default"].createElement("strong", null, "Actions:"), " ", execution.actionsSuccessful, "/", execution.actionsExecuted, " successful"), execution.results && execution.results.workflowName && /*#__PURE__*/_react["default"].createElement("div", {
|
|
962
966
|
style: {
|
|
963
967
|
marginBottom: '4px'
|
|
964
968
|
}
|