Fix accounts route.

This commit is contained in:
2018-06-14 11:09:19 +02:00
parent 01d77b22c3
commit b753b59080
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
<td>
<a [routerLink]="['/account', account.id, 'operations']">{{ account.name }}</a>
<a [routerLink]="[account.id, 'operations']">{{ account.name }}</a>
</td>
<td>
@@ -33,7 +33,7 @@
<!-- Open account scheduler. -->
<a class="btn btn-secondary"
[hidden]="!account.id"
[routerLink]="['/account', account.id, 'scheduler']">
[routerLink]="[account.id, 'scheduler']">
<span class="fa fa-clock-o"></span>
</a>
</div>