fix(useDescriptorStore): correct file path for descriptor proxy imports
gitea/salix-front/pipeline/head This commit looks good Details

This commit is contained in:
Alex Moreno 2025-03-25 12:47:43 +01:00
parent c0e9efc5d8
commit 6dffa78235
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ export const useDescriptorStore = defineStore('descriptorStore', () => {
if (Object.keys(descriptors).length) return descriptors;
const currentDescriptors = {};
const files = import.meta.glob(`src/**/*DescriptorProxy.vue`);
const files = import.meta.glob(`/src/**/*DescriptorProxy.vue`);
const moduleParser = {
account: 'user',
client: 'customer',