Skip to content

Commit

Permalink
RA-1851:Add Encounters tool-tip when viewing visits
Browse files Browse the repository at this point in the history
  • Loading branch information
HerbertYiga committed Apr 26, 2021
1 parent eab41c5 commit 232d27b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
<a href="{{$ctrl.serverUrl}}/coreapps/patientdashboard/patientDashboard.page?patientId={{$ctrl.config.patientUuid}}&visitId={{visit.uuid}}" >
{{$ctrl.widgetsCommons.formatDate(visit.startDatetime,$ctrl.config.JSDateFormat,$ctrl.config.language)}}
</a>
<div class="tag" ng-if="visit.encounterType !== ''" data-toggle="tooltip" data-placement="right" title="we wana display the encounter data here!">{{visit.encounterType | translate }}</div>
<div class="tag" ng-if="visit.encounterType !== '' && visit.encounterType !== 'Visit Note'">{{visit.encounterType | translate }}</div>
<div class="tag" ng-if="visit.encounterType !== '' && visit.encounterType === 'Visit Note'" data-toggle="tooltip" data-placement="right" title="we wana display the encounter data here!">{{visit.encounterType | translate }}</div>

</li>
<p ng-if="$ctrl.visits.length == 0">
{{ 'coreapps.none' | translate }}
Expand Down

0 comments on commit 232d27b

Please sign in to comment.