You have no saved filters
\r\nPlease into the application in order to view any projects.
","import { Component, OnInit } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'app-page-not-found',\r\n templateUrl: './page-not-found.component.html',\r\n styleUrls: ['./page-not-found.component.scss']\r\n})\r\nexport class PageNotFoundComponent implements OnInit {\r\n\r\n constructor() { }\r\n\r\n public ngOnInit(): void {\r\n }\r\n\r\n}\r\n","The page you are attempting to view cannot be found.
\r\n","import { NgModule } from '@angular/core';\r\nimport { RouterModule, Routes } from '@angular/router';\r\nimport { PageNotFoundComponent } from './components/page-not-found.component';\r\nimport { HomeComponent } from './components/home.component';\r\n\r\nconst routes: Routes = [\r\n { path: 'login', component: HomeComponent},\r\n { path: 'not-found', component: PageNotFoundComponent }\r\n];\r\n\r\n@NgModule({\r\n imports: [RouterModule.forChild(routes)],\r\n exports: [RouterModule]\r\n})\r\nexport class ProjectPortfolioCoreRoutingModule { }\r\n","import { NgModule } from '@angular/core';\r\nimport { CommonModule } from '@angular/common';\r\nimport { ProjectPortfolioCoreRoutingModule } from './core-routing.module';\r\nimport { PageNotFoundComponent } from './components/page-not-found.component';\r\nimport { HomeComponent } from './components/home.component';\r\nimport { EmployeeService } from './services/employee.service';\r\nimport { ToastNoAnimationModule } from 'ngx-toastr';\r\nimport { SessionStorageService } from './services/sessionStorage.service';\r\nimport { HttpQueueService } from './services/http-queue.service';\r\nimport { HTTP_INTERCEPTORS } from '@angular/common/http';\r\nimport { HttpErrorInterceptor } from './error/http-error.interceptor';\r\n\r\n\r\n\r\n@NgModule({\r\n declarations: [\r\n PageNotFoundComponent,\r\n HomeComponent\r\n ],\r\n imports: [\r\n CommonModule,\r\n ProjectPortfolioCoreRoutingModule,\r\n ToastNoAnimationModule.forRoot({\r\n positionClass: 'toast-top-center',\r\n preventDuplicates: true,\r\n closeButton: true\r\n }\r\n )\r\n ],\r\n exports: [\r\n PageNotFoundComponent,\r\n HomeComponent\r\n ],\r\n providers: [\r\n EmployeeService,\r\n SessionStorageService,\r\n HttpQueueService,\r\n {\r\n provide: HTTP_INTERCEPTORS,\r\n useClass: HttpErrorInterceptor,\r\n multi: true\r\n }\r\n ]\r\n})\r\nexport class ProjectPortfolioCoreModule { }\r\n","import { HttpErrorResponse, HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from \"@angular/common/http\";\r\nimport { catchError, Observable, throwError } from \"rxjs\";\r\n\r\nexport class HttpErrorInterceptor implements HttpInterceptor {\r\n intercept(req: HttpRequest