Fix admin user list being empty
All checks were successful
/ build (push) Successful in 1m33s
/ deploy (push) Has been skipped

After 4ff3dcb the admin user list became empty due to a messing fetch of
the userStore on the admin page.
This commit is contained in:
Hornwitser 2025-07-16 20:12:26 +02:00
parent 9013e85ff0
commit 31f80daa86

View file

@ -101,6 +101,9 @@ useHead({
title: "Admin",
});
const usersStore = useUsersStore();
await usersStore.fetch();
const tabs = [
{ id: "users", title: "Users" },
{ id: "database", title: "Database" },