Fixes bug on removing /grants

This commit is contained in:
apapachristou 2019-10-04 11:02:36 +03:00
parent 4e9a35605d
commit 2a1eeb92d3
1 changed files with 35 additions and 34 deletions

View File

@ -1,9 +1,10 @@
// import { NgModule } from '@angular/core';
// import { RouterModule, Routes } from '@angular/router';
// import { GrantEditorComponent } from './editor/grant-editor.component';
// import { GrantListingComponent } from './listing/grant-listing.component';
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { GrantEditorComponent } from './editor/grant-editor.component';
import { GrantListingComponent } from './listing/grant-listing.component';
// const routes: Routes = [
// ----------- UNCOMMENT TO ADD AGAIN GRANTS --------
const routes: Routes = [
// {
// path: '',
// component: GrantListingComponent,
@ -27,10 +28,10 @@
// title: 'GENERAL.TITLES.GRANT-NEW'
// },
// }
// ];
];
// @NgModule({
// imports: [RouterModule.forChild(routes)],
// exports: [RouterModule]
// })
// export class GrantRoutingModule { }
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule]
})
export class GrantRoutingModule { }