mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-07 15:25:41 +01:00
Fix: import forms modules for entries component (#8752)
This commit is contained in:
parent
d97e4a9a95
commit
ee4f62a1b3
1 changed files with 6 additions and 2 deletions
|
|
@ -1,5 +1,9 @@
|
||||||
import { Component, forwardRef } from '@angular/core'
|
import { Component, forwardRef } from '@angular/core'
|
||||||
import { NG_VALUE_ACCESSOR } from '@angular/forms'
|
import {
|
||||||
|
FormsModule,
|
||||||
|
NG_VALUE_ACCESSOR,
|
||||||
|
ReactiveFormsModule,
|
||||||
|
} from '@angular/forms'
|
||||||
import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons'
|
import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons'
|
||||||
import { AbstractInputComponent } from '../abstract-input'
|
import { AbstractInputComponent } from '../abstract-input'
|
||||||
|
|
||||||
|
|
@ -14,7 +18,7 @@ import { AbstractInputComponent } from '../abstract-input'
|
||||||
selector: 'pngx-input-entries',
|
selector: 'pngx-input-entries',
|
||||||
templateUrl: './entries.component.html',
|
templateUrl: './entries.component.html',
|
||||||
styleUrl: './entries.component.scss',
|
styleUrl: './entries.component.scss',
|
||||||
imports: [NgxBootstrapIconsModule],
|
imports: [FormsModule, ReactiveFormsModule, NgxBootstrapIconsModule],
|
||||||
})
|
})
|
||||||
export class EntriesComponent extends AbstractInputComponent<object> {
|
export class EntriesComponent extends AbstractInputComponent<object> {
|
||||||
entries = []
|
entries = []
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue