We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69507a1 commit 5111d01Copy full SHA for 5111d01
frontend/src/components/StackList.vue
@@ -191,6 +191,8 @@ export default {
191
return m1.name.localeCompare(m2.name);
192
});
193
194
+ // Group stacks by endpoint, sorting them so the local endpoint is first
195
+ // and the rest are sorted alphabetically
196
result = [
197
...result.reduce((acc, stack) => {
198
const endpoint = stack.endpoint || 'current';
0 commit comments