captalize file name correctly

This commit is contained in:
Charlie Kolb 2025-08-04 10:41:43 +02:00
parent 8434c5a164
commit e8146a6cf9
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View File

@ -8,9 +8,9 @@ import { STORES } from '@n8n/stores';
import { createTestingPinia } from '@pinia/testing';
import { createRouter, createWebHistory } from 'vue-router';
import type { DataStoreResource } from '@/features/dataStore/types';
import { fetchDataStores } from '@/features/dataStore/datastore.api';
import { fetchDataStores } from '@/features/dataStore/dataStore.api';
vi.mock('@/features/dataStore/datastore.api');
vi.mock('@/features/dataStore/dataStore.api');
vi.mock('@/composables/useProjectPages', () => ({
useProjectPages: vi.fn().mockReturnValue({
isOverviewSubPage: false,

View File

@ -10,7 +10,7 @@ import { computed, onMounted, ref } from 'vue';
import { useRoute } from 'vue-router';
import { ProjectTypes } from '@/types/projects.types';
import { useProjectsStore } from '@/stores/projects.store';
import { fetchDataStores } from '@/features/dataStore/datastore.api';
import { fetchDataStores } from '@/features/dataStore/dataStore.api';
import { useRootStore } from '@n8n/stores/useRootStore';
import type { IUser, SortingAndPaginationUpdates, UserAction } from '@/Interface';
import type { DataStoreResource } from '@/features/dataStore/types';