diff options
Diffstat (limited to '3rd_party/static/testapi-ui/components')
-rw-r--r-- | 3rd_party/static/testapi-ui/components/results-report/partials/reportDetails.html | 2 | ||||
-rw-r--r-- | 3rd_party/static/testapi-ui/components/results/results.html | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/3rd_party/static/testapi-ui/components/results-report/partials/reportDetails.html b/3rd_party/static/testapi-ui/components/results-report/partials/reportDetails.html index e363289..78ec4b1 100644 --- a/3rd_party/static/testapi-ui/components/results-report/partials/reportDetails.html +++ b/3rd_party/static/testapi-ui/components/results-report/partials/reportDetails.html @@ -27,7 +27,7 @@ Test Filters:<br /> <uib-accordion-group ng-repeat="(type,data) in ctrl.data" is-open="isOpen"> <uib-accordion-heading> - {{ type }}: (Total: 3 test areas, {{ ctrl.statistics[type].total }} tests) + {{ type }}: {{ ctrl.statistics[type].total }} tests <i class="pull-right glyphicon" ng-class="{'glyphicon-chevron-down': isOpen, 'glyphicon-chevron-right': !isOpen}"></i> </uib-accordion-heading> <ol class="capabilities"> diff --git a/3rd_party/static/testapi-ui/components/results/results.html b/3rd_party/static/testapi-ui/components/results/results.html index 719e689..80d08d6 100644 --- a/3rd_party/static/testapi-ui/components/results/results.html +++ b/3rd_party/static/testapi-ui/components/results/results.html @@ -23,6 +23,7 @@ <tr> <th>Upload Date</th> <th>Test ID</th> + <th>OVP Version</th> <th>Owner</th> <th>File Name</th> <th>Label</th> @@ -39,6 +40,7 @@ <tr ng-repeat="(index, result) in ctrl.data.tests"> <td>{{ result.upload_date | limitTo:19}}</td> <td><a uib-tooltip="{{ result.id }}" tooltip-placement="top" tooltip-append-to-body="true" ng-click="ctrl.gotoResultDetail(result.id, result._id)">{{ result.id | limitTo:8 }}</a></td> + <td>{{ result.version || "2018.01" }}</td> <td>{{ result.owner }}</td> <td>{{ result.filename || "None"}}</td> <td><div class="popover-wrapper"><a editable-theme="bs3" onbeforesave="ctrl.changeLabel(result, 'label', $data)" editable-text="result.label"> {{ result.label || "None" }}</a></div></td> |