From c30763d718462aa458235da6f8c8fbb723efe3d7 Mon Sep 17 00:00:00 2001 From: Gregor Vostrak Date: Mon, 15 Apr 2024 22:29:58 +0200 Subject: [PATCH] add empty state for time page --- e2e/organization.spec.ts | 2 ++ resources/js/Pages/Teams/Partials/ImportData.vue | 6 +++--- resources/js/Pages/Time.vue | 10 +++++++++- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/e2e/organization.spec.ts b/e2e/organization.spec.ts index 751fba80..4b84f4f9 100644 --- a/e2e/organization.spec.ts +++ b/e2e/organization.spec.ts @@ -62,3 +62,5 @@ test('test that error shows if no role is selected', async ({ page }) => { 'The role field is required.' ); }); + +// TODO: Add Test for import diff --git a/resources/js/Pages/Teams/Partials/ImportData.vue b/resources/js/Pages/Teams/Partials/ImportData.vue index 10ccca8c..a209d109 100644 --- a/resources/js/Pages/Teams/Partials/ImportData.vue +++ b/resources/js/Pages/Teams/Partials/ImportData.vue @@ -6,7 +6,7 @@ import { ref } from 'vue'; import { useNotificationsStore } from '@/utils/notification'; import { api } from '../../../../../openapi.json.client'; import InputLabel from '@/Components/InputLabel.vue'; -import { PhotoIcon } from '@heroicons/vue/24/solid'; +import { DocumentIcon } from '@heroicons/vue/24/solid'; import { getCurrentOrganizationId } from '@/utils/useUser'; defineProps<{ @@ -111,8 +111,8 @@ const importType = ref(null);
-