Skip to content

Commit

Permalink
fix(action): Ensure label displays only once
Browse files Browse the repository at this point in the history
  • Loading branch information
zachowj committed Aug 28, 2024
1 parent d02b6b1 commit 37c143d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/editor/components/idSelector/IdSelector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export default class IdSelector {
for (const id of labelIds) {
const l = labels.find((l) => l.label_id === id);
if (l) {
filteredLabels.push(l);
pushIfNotExist(filteredLabels, l);
}
}
};
Expand Down

0 comments on commit 37c143d

Please sign in to comment.