Commits

Mark H. Wood authored c63001c2053
Fix illogical templateUrl paths.

Add missed DenyRequestCopyComponent.
No tags

src/app/request-copy/deny-request-copy/themed-deny-request-copy.component.ts

Added
1 +import { Component } from '@angular/core';
2 +import { ThemedComponent } from 'src/app/shared/theme-support/themed.component';
3 +
4 +import { DenyRequestCopyComponent } from 'src/themes/custom/app/request-copy/deny-request-copy/deny-request-copy.component';
5 +
6 +/**
7 + * Themed wrapper for deny-request-copy.component
8 + */
9 +@Component({
10 + selector: 'ds-themed-deny-request-copy',
11 + styleUrls: [],
12 + templateUrl: './../../shared/theme-support/themed.component.html',
13 +})
14 +export class ThemedDenyRequestCopyComponent extends ThemedComponent<DenyRequestCopyComponent> {
15 + protected getComponentName(): string {
16 + return 'DenyRequestCopyComponent';
17 + }
18 +
19 + protected importThemedComponent(themeName: string): Promise<any> {
20 + return import(`../../../themes/${themeName}/app/request-copy/deny-request-copy/deny-request-copy.component`);
21 + }
22 +
23 + protected importUnthemedComponent(): Promise<any> {
24 + return import('./deny-request-copy.component');
25 + }
26 +}

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut