From 01207a284d37cf841270c18ab9f61ac748b036f2 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 19 Jan 2025 10:37:31 -0800 Subject: [PATCH] Fix: import router module to not found component (#8821) --- src-ui/src/app/components/not-found/not-found.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src-ui/src/app/components/not-found/not-found.component.ts b/src-ui/src/app/components/not-found/not-found.component.ts index dc381d265..44cd103ec 100644 --- a/src-ui/src/app/components/not-found/not-found.component.ts +++ b/src-ui/src/app/components/not-found/not-found.component.ts @@ -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() {}