Fix sorting by backup target

This commit is contained in:
Johannes Zellner
2025-08-13 20:02:28 +02:00
parent 55d401c098
commit eebd36ccc8
+3 -1
View File
@@ -46,7 +46,9 @@ const columns = {
}, },
target: { target: {
label: 'Storage', label: 'Storage',
sort: true sort(a, b) {
return b.name <= a.name ? 1 : -1;
},
}, },
actions: {} actions: {}
}; };