Skip to content

Commit 5e54422

Browse files
committed
fixed redundant / in pathname of themed component
1 parent 133f35c commit 5e54422

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/shared/object-list/themed-object-list.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ export class ThemedObjectListComponent extends ThemedComponent<ObjectListCompone
200200
}
201201

202202
protected importThemedComponent(themeName: string): Promise<any> {
203-
return import(`../../../themes//${themeName}/app/shared/object-list/object-list.component`);
203+
return import(`../../../themes/${themeName}/app/shared/object-list/object-list.component`);
204204
}
205205

206206
protected importUnthemedComponent(): Promise<any> {

0 commit comments

Comments
 (0)