Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A-1208511162281418 | Translation capability to flowsheets #1015

Merged
merged 1 commit into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
ng-dialog-class="ngdialog ngdialog-theme-default ng-dialog-all-details-page"
ng-dialog-data='{"section": {{section}}, "patient": {{patient}} }'
class="section-title has-link">
<span class="title-link">{{section.title}} </span>
<span class="title-link">{{::section | titleTranslate}} </span>
<i class="fa fa-external-link"></i>
</h2>
<pivot-table patient-uuid="patient.uuid" config="section.dashboardConfig" display-name="section.dashboardConfig.label" status="status"></pivot-table>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ <h2 ng-if="::(displayName || diseaseName)" class="section-title section-title-pi
<table ng-class="::{'h-scroll':showOnPrint, 'pivot-table':showOnPrint, 'h-scroll-print': !showOnPrint}">
<thead>
<tr>
<th class="row-header-group">{{::heading}}</th>
<th class="row-header-group">{{::heading | translate}}</th>
<th ng-repeat="concept in ::result.concepts track by $index">
<span>{{::concept.shortName}}</span>
<hint concept-details="concept"/>
Expand Down
Loading