From e964d2b63166da66a400e5573348a7add7f2e35e Mon Sep 17 00:00:00 2001 From: noah Date: Sun, 26 Jun 2022 13:44:41 +0900 Subject: [PATCH] Fix the bug of notification ID --- ui/src/redux/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/redux/main.ts b/ui/src/redux/main.ts index a12af61c..381cac67 100644 --- a/ui/src/redux/main.ts +++ b/ui/src/redux/main.ts @@ -170,7 +170,7 @@ export const notifyDeploymentStatusEvent = createAsyncThunk< notify(`${repo.namespace}/${repo.name} #${deployment.number}`, { icon: '/logo192.png', body: `${deploymentStatus.status} - ${deploymentStatus.description}`, - tag: String(deployment.id), + tag: String(deploymentStatus.id), }); } );