mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-10-30 03:56:23 -05:00 
			
		
		
		
	Fix: add missing icon imports to inputs
This commit is contained in:
		| @@ -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() { | ||||
|   | ||||
| @@ -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 = '' | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 shamoon
					shamoon