Skip to content

Commit

Permalink
[ng] Restore routing
Browse files Browse the repository at this point in the history
  • Loading branch information
DraTeots committed May 15, 2024
1 parent 146f0b7 commit edb3032
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions firebird-ng/src/app/app.routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ import {FileBrowserComponent} from "./file-browser/file-browser.component";
import {InputConfigComponent} from "./input-config/input-config.component";

export const routes: Routes = [
// { path: '', redirectTo: '/display', pathMatch: 'full' },
{ path: '', redirectTo: '/config', pathMatch: 'full' },
{ path: 'config', component: InputConfigComponent },

{
path: 'files',
loadComponent: () => import('./file-browser/file-browser.component').then(m => m.FileBrowserComponent)
},
{
path: '',
path: 'display',
loadComponent: () => import('./main-display/main-display.component').then(m => m.MainDisplayComponent)
},
];

0 comments on commit edb3032

Please sign in to comment.