Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
fix(cart): fix
Browse files Browse the repository at this point in the history
fix bug with table
Closes 655
  • Loading branch information
Daniel Stern committed Mar 23, 2015
1 parent 6d20f3d commit 369c3b9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/scripts/cart/templates/cart.html
Original file line number Diff line number Diff line change
Expand Up @@ -150,16 +150,16 @@ <h3 class="panel-title pull-left" data-translate>Cart Items</h3>
{{ file.file_name }}
</a>
</td>
<td class="truncated-cell" data-ng-if="file.participantNum === 1">
<td class="truncated-cell" data-ng-if="file.participantNum === 1" >
<a data-ui-sref="participant({ participantId : '{{ file.participantId }}' })">
{{ file.participantId }}
{{ file.participantId || '--'}}
</a>
</td>
<td data-ng-if="file.participantNum > 1">
<td data-ng-if="file.participantNum !== 1" >
<a data-ui-sref="search.participants({ 'filters': {{
[{ name: 'files.file_id', value: file.file_id }] | makeFilter }}
})">
{{ file.participantNum }}
{{ file.participantNum || '--' }}
</a>
</td>
<td>
Expand Down

0 comments on commit 369c3b9

Please sign in to comment.