fix issue where the themed submission page would crash because the component couldn't be found

This commit is contained in:
Art Lowel
2021-03-29 17:09:26 +02:00
parent d7daaf4188
commit 05545f703b

View File

@@ -12,7 +12,7 @@ import { SubmissionSubmitComponent } from './submission-submit.component';
})
export class ThemedSubmissionSubmitComponent extends ThemedComponent<SubmissionSubmitComponent> {
protected getComponentName(): string {
return 'SubmissionImportExternalComponent';
return 'SubmissionSubmitComponent';
}
protected importThemedComponent(themeName: string): Promise<any> {