Skip to content

Commit

Permalink
Fixes for BAH-2898 & BAH-2901 (#547)
Browse files Browse the repository at this point in the history
* BAH-2898 | Fix. Typo in treatment data display control

Co-authored-by: Deepthi Mantena <[email protected]>

* BAH-2901 | Fix. Test name not shown when file is associated with result

Co-authored-by: Deepthi Mantena <[email protected]>

---------

Co-authored-by: Deepthi Mantena <[email protected]>
  • Loading branch information
mohan-13 and deepthi-mantena authored Mar 13, 2023
1 parent 64f7313 commit 96fad3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<td class="testUnderPanel" bo-class="{'has-uploaded-file': test.uploadedFileName}">
<span ng-if="!test.uploadedFileName" bo-text="::getLocaleSpecificNameForTest(test)"></span>
<span ng-if="test.labReportUrl">
<a class="uploaded-file" href="{{test.labReportUrl}}" stop-event-propagation="click" target="_blank">{{test.preferredNameByLocale}}
<a class="uploaded-file" href="{{test.labReportUrl}}" stop-event-propagation="click" target="_blank">{{::getLocaleSpecificNameForTest(test)}}
<span bo-show="test.hasRange" class="range">
<span bo-text="'(' + test.minNormal + ' - ' + test.maxNormal + ')'"></span>
</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ angular.module('bahmni.clinical')

var startDate = null, endDate = null, getEffectiveOrdersOnly = false;
if (programConfig.showDetailsWithinDateRange) {
startDate = $stateParamqs.dateEnrolled;
startDate = $stateParams.dateEnrolled;
endDate = $stateParams.dateCompleted;
if (startDate || endDate) {
$scope.params.showOtherActive = false;
Expand Down

0 comments on commit 96fad3f

Please sign in to comment.