forked from github/plane
[WEB-903] fix: issue subscription button mutation. (#4149)
This commit is contained in:
parent
9b918b727a
commit
2d4547601d
@ -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…
Reference in New Issue
Block a user