diff --git a/frontend/src/pages/Admin/ManageUsers/index.vue b/frontend/src/pages/Admin/ManageUsers/index.vue
index 1589131d0..c11a02015 100644
--- a/frontend/src/pages/Admin/ManageUsers/index.vue
+++ b/frontend/src/pages/Admin/ManageUsers/index.vue
@@ -14,7 +14,7 @@
mdi-account-plus-outline
-
+
{{ $t("group.groups") }}
{{ $globals.icons.group }}
@@ -55,7 +55,12 @@ export default {
},
},
mounted() {
- this.$store.dispatch("requestAllGroups");
+ this.reqGroups();
+ },
+ methods: {
+ reqGroups() {
+ this.$store.dispatch("requestAllGroups");
+ },
},
};