[WEB-903] fix: issue subscription button mutation. (#4149)
This commit is contained in:
parent
9b918b727a
commit
2d4547601d
1 changed files with 2 additions and 2 deletions
|
|
@ -82,7 +82,7 @@ export class IssueSubscriptionStore implements IIssueSubscriptionStore {
|
|||
if (!currentUserId) throw new Error("user id not available");
|
||||
|
||||
runInAction(() => {
|
||||
set(this.subscriptionMap, [issueId, currentUserId], { subscribed: true });
|
||||
set(this.subscriptionMap, [issueId, currentUserId], true);
|
||||
});
|
||||
|
||||
await this.notificationService.subscribeToIssueNotifications(workspaceSlug, projectId, issueId);
|
||||
|
|
@ -98,7 +98,7 @@ export class IssueSubscriptionStore implements IIssueSubscriptionStore {
|
|||
if (!currentUserId) throw new Error("user id not available");
|
||||
|
||||
runInAction(() => {
|
||||
set(this.subscriptionMap, [issueId, currentUserId], { subscribed: false });
|
||||
set(this.subscriptionMap, [issueId, currentUserId], false);
|
||||
});
|
||||
|
||||
await this.notificationService.unsubscribeFromIssueNotifications(workspaceSlug, projectId, issueId);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue