We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a70936 commit 9c2b432Copy full SHA for 9c2b432
apps/web/src/features/datahub/pages/SubjectAssignmentsPage.tsx
@@ -37,6 +37,7 @@ export const SubjectAssignmentsPage = () => {
37
38
const instrumentOptions = Object.fromEntries(
39
(instrumentInfoQuery.data ?? [])
40
+ .sort((a, b) => a.details.title.localeCompare(b.details.title))
41
.filter((instrument) => {
42
return currentGroup?.accessibleInstrumentIds.includes(instrument.id) ?? true;
43
})
0 commit comments