Skip to content

Commit a3c298b

Browse files
authored
change 'is' to 'was' for notifications (#4344)
1 parent 300e76e commit a3c298b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dashboard/src/main/home/app-dashboard/app-view/tabs/notifications/NotificationTile.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const NotificationTile: React.FC<Props> = ({
5353
? "A service failed to deploy"
5454
: ["job", "predeploy"].includes(n.service.config.type)
5555
? "A job run encountered issues"
56-
: "A service is unhealthy";
56+
: "A service was unhealthy";
5757
})
5858
.with({ scope: "APPLICATION" }, () => {
5959
return "The application failed to deploy";

dashboard/src/main/home/app-dashboard/app-view/tabs/notifications/expanded-views/ServiceNotificationExpandedView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const ServiceNotificationExpandedView: React.FC<Props> = ({
6161
<Text size={16} color={"#FFBF00"}>
6262
{notification.isDeployRelated
6363
? "failed to deploy"
64-
: "is unhealthy"}
64+
: "was unhealthy"}
6565
</Text>
6666
</Container>
6767
{notification.service.config.type === "job" && (

0 commit comments

Comments
 (0)