diff --git a/web/core/store/issue/helpers/base-issues.store.ts b/web/core/store/issue/helpers/base-issues.store.ts index 7e0464228..2edb11735 100644 --- a/web/core/store/issue/helpers/base-issues.store.ts +++ b/web/core/store/issue/helpers/base-issues.store.ts @@ -804,7 +804,7 @@ export abstract class BaseIssuesStore implements IBaseIssuesStore { // convert existing value to an array const newExistingValue = Array.isArray(existingValue) ? existingValue : []; this.rootIssueStore.issues.updateIssue(issueId, { - [property]: uniq([newExistingValue, ...propertyValue]), + [property]: uniq([...newExistingValue, ...propertyValue]), }); } else { // if property value is not an array, simply update the value