]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Fix: import router module to not found component (#8821)
authorshamoon <4887959+shamoon@users.noreply.github.com>
Sun, 19 Jan 2025 18:37:31 +0000 (10:37 -0800)
committerGitHub <noreply@github.com>
Sun, 19 Jan 2025 18:37:31 +0000 (10:37 -0800)
src-ui/src/app/components/not-found/not-found.component.ts

index dc381d2656887f862cd7ffb06b13933a9880fac1..44cd103ecba2d80cff75d1072e4fc65276310286 100644 (file)
@@ -1,4 +1,5 @@
 import { Component } from '@angular/core'
+import { RouterModule } from '@angular/router'
 import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons'
 import { LogoComponent } from '../common/logo/logo.component'
 
@@ -6,7 +7,7 @@ import { LogoComponent } from '../common/logo/logo.component'
   selector: 'pngx-not-found',
   templateUrl: './not-found.component.html',
   styleUrls: ['./not-found.component.scss'],
-  imports: [LogoComponent, NgxBootstrapIconsModule],
+  imports: [LogoComponent, NgxBootstrapIconsModule, RouterModule],
 })
 export class NotFoundComponent {
   constructor() {}