chore: sorted list

This commit is contained in:
Matthias 2024-07-23 20:02:02 +02:00
parent fab6c6f4f2
commit 7ce1194c31

View File

@ -11,5 +11,6 @@ export function plotConfigColumns(plotConfig: Partial<PlotConfig>): string[] {
cols.push(subkey);
}
}
return cols;
// Make list unique
return [...new Set(cols)].sort();
}