fixed redundant / in pathname of themed component

This commit is contained in:
Peter Wolfersberger
2022-09-21 12:36:38 +02:00
parent 133f35cb42
commit 5e54422daf

View File

@@ -200,7 +200,7 @@ export class ThemedObjectListComponent extends ThemedComponent<ObjectListCompone
}
protected importThemedComponent(themeName: string): Promise<any> {
return import(`../../../themes//${themeName}/app/shared/object-list/object-list.component`);
return import(`../../../themes/${themeName}/app/shared/object-list/object-list.component`);
}
protected importUnthemedComponent(): Promise<any> {