Port activation to vuejs

This commit is contained in:
Johannes Zellner
2025-03-31 22:28:17 +02:00
parent e3b81d0b36
commit b2e1d4cc61
7 changed files with 229 additions and 165 deletions
+9 -1
View File
@@ -58,7 +58,15 @@ const listColumns = {
sort: true,
hideMobile: true,
},
status: {},
status: {
label: 'Status',
hideMobile: true,
sort: (a, b) => {
console.log(a, b)
if (!a || !b) return -1;
return a.installationState < b.installationState ? -1 : (a.installationState > b.installationState ? 1 : 0)
},
},
appTitle: {
label: 'App Title',
sort: true,