diff options
author | Alex Tatiyants <atatiyan@gmail.com> | 2016-01-07 08:52:03 -0800 |
---|---|---|
committer | Alex Tatiyants <atatiyan@gmail.com> | 2016-01-07 08:52:03 -0800 |
commit | b07f0a403237e46fe0176a2e6a30bc1636322a7b (patch) | |
tree | 491091252489f2a82fa3daa4d7ac6501525d3e40 /app/components/plan-list | |
parent | 4f14eab969c33e506f6a5692392fb8fcf4e83df1 (diff) |
bar display tweaks
Diffstat (limited to 'app/components/plan-list')
-rw-r--r-- | app/components/plan-list/plan-list.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/components/plan-list/plan-list.html b/app/components/plan-list/plan-list.html index 9a75ed9..28c95af 100644 --- a/app/components/plan-list/plan-list.html +++ b/app/components/plan-list/plan-list.html @@ -5,7 +5,7 @@ <table class="table"> <tr *ngFor="#plan of plans"> - <td><a [routerLink]="['/PlanView', {id: plan.id}]">{{plan.name}}</a></td> + <td width="30%"><a [routerLink]="['/PlanView', {id: plan.id}]">{{plan.name}}</a></td> <td>created on {{plan.createdOn | momentDate }}</td> <td class="align-right"><button class="btn btn-danger" (click)="requestDelete()"> <i class="fa fa-trash"></i>delete</button> |