diff --git a/client/src/components/ui/LoadingSpinner.vue b/client/src/components/ui/LoadingSpinner.vue new file mode 100644 index 00000000..34c7ca21 --- /dev/null +++ b/client/src/components/ui/LoadingSpinner.vue @@ -0,0 +1,21 @@ + diff --git a/client/src/pages/dashboard/DashboardPage.vue b/client/src/pages/dashboard/DashboardPage.vue index d7c51aba..9d3aa97c 100644 --- a/client/src/pages/dashboard/DashboardPage.vue +++ b/client/src/pages/dashboard/DashboardPage.vue @@ -8,6 +8,7 @@ import ItDropdownSelect from "@/components/ui/ItDropdownSelect.vue"; import { useDashboardStore } from "@/stores/dashboard"; import type { DashboardType } from "@/gql/graphql"; import SimpleListPage from "@/pages/dashboard/SimpleListPage.vue"; +import LoadingSpinner from "@/components/ui/LoadingSpinner.vue"; const dashboardStore = useDashboardStore(); @@ -26,7 +27,13 @@ onMounted(dashboardStore.loadDashboardDetails);