From 4b6fe9a2dbec99a03cb6cea52a14a65b122d5dd4 Mon Sep 17 00:00:00 2001 From: gulnaz Date: Tue, 25 Nov 2025 14:04:08 +0300 Subject: [PATCH] SUPPORT-9561: register new component --- frontend/src/ts/modules/app/app.module.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/ts/modules/app/app.module.ts b/frontend/src/ts/modules/app/app.module.ts index 517811de..be3f53ea 100644 --- a/frontend/src/ts/modules/app/app.module.ts +++ b/frontend/src/ts/modules/app/app.module.ts @@ -31,6 +31,7 @@ import { ErvuFileUploadWithAdditionalFiles } from "../../ervu/component/fileupload/ErvuFileUploadWithAdditionalFiles"; import {ValidateFileService} from "../../ervu/service/ValidateFileService"; +import {YearComboBox} from "../../ervu/component/combobox/YearComboBox"; registerLocaleData(localeRu); export const DIRECTIVES = [ @@ -44,6 +45,7 @@ export const DIRECTIVES = [ forwardRef(() => ErvuDownloadFileButton), forwardRef(() => InMemoryStaticGrid), forwardRef(() => HomeLandingComponent), + forwardRef(() => YearComboBox) ]; export function checkAuthentication(authService: AuthenticationService): () => Promise {