We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87d59cd commit 8a60c96Copy full SHA for 8a60c96
pages/admin/settings/users.vue
@@ -68,7 +68,6 @@ const userProfiles: Ref<Array<UserProfile>> = ref([]);
68
const userProfilesTotal = ref(0);
69
const currentPage: Ref<number> = ref(Number(route.query?.page as string) || 1);
70
const searchQuery: Ref<string> = ref(null);
71
-const itemsFilters: Ref<string> = ref(route.query?.filters as string || filteringOptions[0].value);
72
const queryFilters = route.query?.filters as string[] || [];
73
const filters: Ref<string[]> = ref(Array.isArray(queryFilters) ? queryFilters : [queryFilters]);
74
const itemsSorting: Ref<string> = ref(route.query?.sorting as string || sortingOptions[0].value);
0 commit comments