]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Fix: add missing icon imports to inputs
authorshamoon <4887959+shamoon@users.noreply.github.com>
Tue, 11 Feb 2025 06:47:00 +0000 (22:47 -0800)
committershamoon <4887959+shamoon@users.noreply.github.com>
Tue, 11 Feb 2025 06:47:00 +0000 (22:47 -0800)
src-ui/src/app/components/common/input/check/check.component.ts
src-ui/src/app/components/common/input/monetary/monetary.component.ts

index d7903b44b4c2644eff68f5ca5487e57d12b5653d..82e2667243090343eb322570ceac9f1370840ed6 100644 (file)
@@ -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<boolean> {
   constructor() {
index a895f3d56da19a17c2a6cf04dd4fa0e7aa1bc226..cca3ab4b946b1da2fbd94aa67c715f96289c3598 100644 (file)
@@ -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<string> {
   public currency: string = ''