Skip to content

Commit

Permalink
Some changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ysilvestrov committed Sep 4, 2016
1 parent 38d20b0 commit 7b14cd6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ClientApp/components/fetch-data/fetch-data.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ <h1>Weather forecast</h1>
<td>{{ forecast.dateFormatted }}</td>
<td>{{ forecast.temperatureC }}</td>
<td>{{ forecast.temperatureF }}</td>
<td>{{ forecast.summary }}</td>
<td>{{ test.summary }}</td>
</tr>
</tbody>
</table>
6 changes: 3 additions & 3 deletions ClientApp/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import { FetchData } from './components/fetch-data/fetch-data';
import { Counter } from './components/counter/counter';

export const routes: RouterConfig = [
{ path: '', redirectTo: 'home', pathMatch: 'full' },
{ path: '', redirectTo: 'fetch-data', pathMatch: 'full' },
{ path: 'fetch-data', component: FetchData },
{ path: 'home', component: Home },
{ path: 'counter', component: Counter },
{ path: 'fetch-data', component: FetchData },
{ path: '**', redirectTo: 'home' }
{ path: '**', redirectTo: 'fetch-data' }
];

0 comments on commit 7b14cd6

Please sign in to comment.