mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-11 09:07:18 +01:00
Fix: import router module to not found component (#8821)
This commit is contained in:
parent
0f863ab378
commit
01207a284d
1 changed files with 2 additions and 1 deletions
|
|
@ -1,4 +1,5 @@
|
||||||
import { Component } from '@angular/core'
|
import { Component } from '@angular/core'
|
||||||
|
import { RouterModule } from '@angular/router'
|
||||||
import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons'
|
import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons'
|
||||||
import { LogoComponent } from '../common/logo/logo.component'
|
import { LogoComponent } from '../common/logo/logo.component'
|
||||||
|
|
||||||
|
|
@ -6,7 +7,7 @@ import { LogoComponent } from '../common/logo/logo.component'
|
||||||
selector: 'pngx-not-found',
|
selector: 'pngx-not-found',
|
||||||
templateUrl: './not-found.component.html',
|
templateUrl: './not-found.component.html',
|
||||||
styleUrls: ['./not-found.component.scss'],
|
styleUrls: ['./not-found.component.scss'],
|
||||||
imports: [LogoComponent, NgxBootstrapIconsModule],
|
imports: [LogoComponent, NgxBootstrapIconsModule, RouterModule],
|
||||||
})
|
})
|
||||||
export class NotFoundComponent {
|
export class NotFoundComponent {
|
||||||
constructor() {}
|
constructor() {}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue