Skip to content

Commit

Permalink
location detail should be looking at item not row right?
Browse files Browse the repository at this point in the history
  • Loading branch information
fredkingham committed Apr 20, 2017
1 parent 8fbe003 commit ac257ec
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions opal/templates/records/location.html
Expand Up @@ -2,11 +2,11 @@
[[item.hospital]]<br />
[[item.ward]] [[item.bed]]<br />
<span ng-show="row.date_of_admission">
Admitted: [[row.date_of_admission | shortDate]]
Admitted: [[item.date_of_admission | shortDate]]
</span>
<span ng-show="row.date_of_episode">
Date: [[row.date_of_episode | shortDate]]
<span ng-show="item.date_of_episode">
Date: [[item.date_of_episode | shortDate]]
</span>
<span ng-show="row.discharge_date">
Discharged: [[row.discharge_date | shortDate]]
<span ng-show="item.discharge_date">
Discharged: [[item.discharge_date | shortDate]]
</span>

0 comments on commit ac257ec

Please sign in to comment.