implement notification page (#8)

This commit is contained in:
UUBulb
2024-11-20 21:37:03 +08:00
committed by GitHub
parent e37f30d335
commit b3588b3378
27 changed files with 1133 additions and 36 deletions
+1 -1
View File
@@ -72,7 +72,7 @@ export default function ServerPage() {
header: "Groups",
accessorKey: "groups",
accessorFn: row => {
return serverGroups?.filter(sg => sg.servers.includes(row.id))
return serverGroups?.filter(sg => sg.servers?.includes(row.id))
.map(sg => sg.group.id)
|| [];
},