From 0aca5c7a869ac0d46df43c16ce3d89a43bb619e4 Mon Sep 17 00:00:00 2001 From: Prateek Shourya Date: Fri, 14 Jun 2024 17:09:49 +0530 Subject: [PATCH] [WEB-1601] fix: archive issues mutation. (#4815) --- web/core/store/issue/helpers/base-issues.store.ts | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/web/core/store/issue/helpers/base-issues.store.ts b/web/core/store/issue/helpers/base-issues.store.ts index b06004761..f5e74184a 100644 --- a/web/core/store/issue/helpers/base-issues.store.ts +++ b/web/core/store/issue/helpers/base-issues.store.ts @@ -744,9 +744,15 @@ export abstract class BaseIssuesStore implements IBaseIssuesStore { runInAction(() => { issueIds.forEach((issueId) => { - this.updateIssue(workspaceSlug, projectId, issueId, { - archived_at: response.archived_at, - }); + this.updateIssue( + workspaceSlug, + projectId, + issueId, + { + archived_at: response.archived_at, + }, + false + ); this.removeIssueFromList(issueId); }); });