From ea94626b82f575898fa2d476e43a58e6be16123b Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 10 Feb 2025 22:47:00 -0800 Subject: [PATCH] Fix: add missing icon imports to inputs --- .../app/components/common/input/check/check.component.ts | 3 ++- .../common/input/monetary/monetary.component.ts | 8 +++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src-ui/src/app/components/common/input/check/check.component.ts b/src-ui/src/app/components/common/input/check/check.component.ts index d7903b44b..82e266724 100644 --- a/src-ui/src/app/components/common/input/check/check.component.ts +++ b/src-ui/src/app/components/common/input/check/check.component.ts @@ -5,6 +5,7 @@ import { NG_VALUE_ACCESSOR, ReactiveFormsModule, } from '@angular/forms' +import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons' import { AbstractInputComponent } from '../abstract-input' @Component({ @@ -18,7 +19,7 @@ import { AbstractInputComponent } from '../abstract-input' selector: 'pngx-input-check', templateUrl: './check.component.html', styleUrls: ['./check.component.scss'], - imports: [FormsModule, ReactiveFormsModule, NgClass], + imports: [FormsModule, ReactiveFormsModule, NgClass, NgxBootstrapIconsModule], }) export class CheckComponent extends AbstractInputComponent { constructor() { diff --git a/src-ui/src/app/components/common/input/monetary/monetary.component.ts b/src-ui/src/app/components/common/input/monetary/monetary.component.ts index a895f3d56..cca3ab4b9 100644 --- a/src-ui/src/app/components/common/input/monetary/monetary.component.ts +++ b/src-ui/src/app/components/common/input/monetary/monetary.component.ts @@ -5,6 +5,7 @@ import { NG_VALUE_ACCESSOR, ReactiveFormsModule, } from '@angular/forms' +import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons' import { AbstractInputComponent } from '../abstract-input' @Component({ @@ -18,7 +19,12 @@ import { AbstractInputComponent } from '../abstract-input' selector: 'pngx-input-monetary', templateUrl: './monetary.component.html', styleUrls: ['./monetary.component.scss'], - imports: [CurrencyPipe, FormsModule, ReactiveFormsModule], + imports: [ + CurrencyPipe, + FormsModule, + ReactiveFormsModule, + NgxBootstrapIconsModule, + ], }) export class MonetaryComponent extends AbstractInputComponent { public currency: string = ''