Skip to content

Commit 16e7780

Browse files
committed
fix duplicate authors in history tab
1 parent 1cead81 commit 16e7780

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/webapp/app/components/tabs/CurationHistoryTab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const CurationHistoryTab = observer(({ historyData, getUsers, users, historyTabS
4343
}
4444
}
4545
options.sort((a, b) => a.label.localeCompare(b.label));
46-
return options;
46+
return _.uniqBy(options, 'label');
4747
}, [users]);
4848

4949
useEffect(() => {

0 commit comments

Comments
 (0)