Merge branch 'w2p-97184_theme-feedback_contribute-7.2' into w2p-97184_theme-feedback_contribute-7.4

This commit is contained in:
lotte
2023-01-23 13:32:39 +01:00

View File

@@ -7,12 +7,12 @@ import { Context } from '../../../../core/shared/context.model';
import { CollectionElementLinkType } from '../../collection-element-link.type'; import { CollectionElementLinkType } from '../../collection-element-link.type';
/** /**
* Themed wrapper for SearchComponent * Themed wrapper for ListableObjectComponentLoaderComponent
*/ */
@Component({ @Component({
selector: 'ds-themed-listable-object-component-loader', selector: 'ds-themed-listable-object-component-loader',
styleUrls: [], styleUrls: [],
templateUrl: '../theme-support/themed.component.html', templateUrl: '../../../theme-support/themed.component.html',
}) })
export class ThemedListableObjectComponentLoaderComponent extends ThemedComponent<ListableObjectComponentLoaderComponent> { export class ThemedListableObjectComponentLoaderComponent extends ThemedComponent<ListableObjectComponentLoaderComponent> {
protected inAndOutputNames: (keyof ListableObjectComponentLoaderComponent & keyof this)[] = [ protected inAndOutputNames: (keyof ListableObjectComponentLoaderComponent & keyof this)[] = [
@@ -34,7 +34,7 @@ export class ThemedListableObjectComponentLoaderComponent extends ThemedComponen
} }
protected importThemedComponent(themeName: string): Promise<any> { protected importThemedComponent(themeName: string): Promise<any> {
return import(`../../../themes/${themeName}/app/shared/object-collection/shared/listable-object/listable-object-component-loader.component`); return import(`../../../../../themes/${themeName}/app/shared/object-collection/shared/listable-object/listable-object-component-loader.component`);
} }
protected importUnthemedComponent(): Promise<any> { protected importUnthemedComponent(): Promise<any> {