From e0ceb5acef4466d6316a84fa2ad0cc0642579473 Mon Sep 17 00:00:00 2001 From: Alexis Hernandez Date: Sun, 11 Mar 2018 12:54:44 -0600 Subject: [PATCH] web-ui: Add route for TransactionDetailsComponent --- web-ui/src/app/app-routing.module.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web-ui/src/app/app-routing.module.ts b/web-ui/src/app/app-routing.module.ts index 7e70a9e..8f483b1 100644 --- a/web-ui/src/app/app-routing.module.ts +++ b/web-ui/src/app/app-routing.module.ts @@ -2,9 +2,11 @@ import { NgModule } from '@angular/core'; import { Routes, RouterModule } from '@angular/router'; import { HomeComponent } from './components/home/home.component'; +import { TransactionDetailsComponent } from './components/transaction-details/transaction-details.component'; const routes: Routes = [ { path: '', component: HomeComponent }, + { path: 'transactions/:txid', component: TransactionDetailsComponent }, { path: '**', redirectTo: '' } ];