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);
-