Add changie and linter fixes

This commit is contained in:
2025-02-27 16:19:21 +01:00
parent 8c8c16c1a1
commit 17db571244
5 changed files with 22 additions and 15 deletions

View File

@@ -160,9 +160,8 @@ export default {
/* Add in list the issues already associated (if not yet listed) */
this.socialIssuesSelected.forEach((issue) => {
if (
this.socialIssuesList.filter(
(i) => i.id === issue.id
).length !== 1
this.socialIssuesList.filter((i) => i.id === issue.id)
.length !== 1
) {
this.$store.commit("addIssueInList", issue);
}