fix(useDescriptorStore): correct file path for descriptor proxy imports
gitea/salix-front/pipeline/head This commit looks good
Details
gitea/salix-front/pipeline/head This commit looks good
Details
This commit is contained in:
parent
c0e9efc5d8
commit
6dffa78235
|
@ -8,7 +8,7 @@ export const useDescriptorStore = defineStore('descriptorStore', () => {
|
||||||
if (Object.keys(descriptors).length) return descriptors;
|
if (Object.keys(descriptors).length) return descriptors;
|
||||||
|
|
||||||
const currentDescriptors = {};
|
const currentDescriptors = {};
|
||||||
const files = import.meta.glob(`src/**/*DescriptorProxy.vue`);
|
const files = import.meta.glob(`/src/**/*DescriptorProxy.vue`);
|
||||||
const moduleParser = {
|
const moduleParser = {
|
||||||
account: 'user',
|
account: 'user',
|
||||||
client: 'customer',
|
client: 'customer',
|
||||||
|
|
Loading…
Reference in New Issue