fix: operations marked as 'warn' rather than 'error' for partial backups

This commit is contained in:
Gareth George
2023-12-20 07:40:26 +00:00
parent 16aceafa2d
commit bcbc0cec32
7 changed files with 38 additions and 12 deletions
+4
View File
@@ -301,6 +301,10 @@ export const detailsForOperation = (
state = "error";
color = "red";
break;
case OperationStatus.STATUS_WARNING:
state = "warning";
color = "orange";
break;
case OperationStatus.STATUS_SUCCESS:
state = "";
color = "green";