Skip to content
This repository was archived by the owner on May 30, 2024. It is now read-only.

Commit 1b354d5

Browse files
author
Noah Lee
authored
Fix the bug of notification ID (#456)
1 parent 2d79270 commit 1b354d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/redux/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ export const notifyDeploymentStatusEvent = createAsyncThunk<
170170
notify(`${repo.namespace}/${repo.name} #${deployment.number}`, {
171171
icon: '/logo192.png',
172172
body: `${deploymentStatus.status} - ${deploymentStatus.description}`,
173-
tag: String(deployment.id),
173+
tag: String(deploymentStatus.id),
174174
});
175175
}
176176
);

0 commit comments

Comments
 (0)