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 d9283ff commit e243711Copy full SHA for e243711
app/components/TargetStation.tsx
@@ -11,6 +11,9 @@ export default function TargetStation({
11
instruments: Array<instListEntryWithRunstatePVandValue>;
12
beamCurrent: number | null | undefined;
13
}) {
14
+ instruments = instruments.sort((instrumenta, instrumentb) =>
15
+ instrumenta.name.localeCompare(instrumentb.name),
16
+ );
17
return (
18
<div className="flex flex-col justify-center items-start w-full">
19
<h1 className="w-full text-left text-gray-600 dark:text-gray-200 font-semibold text-md mt-2 py-2 ">
0 commit comments