diff options
author | grakiss <grakiss.wanglei@huawei.com> | 2017-11-02 07:53:50 +0000 |
---|---|---|
committer | grakiss <grakiss.wanglei@huawei.com> | 2017-11-02 07:53:50 +0000 |
commit | c70193d65811a8a2a3b50fdad5463bca3643e219 (patch) | |
tree | cd821c5f0ebd293bcea4ed6ea053550fdf45eb01 /cvp | |
parent | b3501de5a645f69c705e64345965aab9cd271355 (diff) |
Bugfix: remove redundancy line
There is a redundancy line in result page when auto merge.
We need to remove it.
Change-Id: I31a754d881584be5a715ddcf6f1f32b25158dfca
Signed-off-by: grakiss <grakiss.wanglei@huawei.com>
Diffstat (limited to 'cvp')
-rw-r--r-- | cvp/3rd_party/static/testapi-ui/components/results/results.html | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cvp/3rd_party/static/testapi-ui/components/results/results.html b/cvp/3rd_party/static/testapi-ui/components/results/results.html index 9127e170..a09a5338 100644 --- a/cvp/3rd_party/static/testapi-ui/components/results/results.html +++ b/cvp/3rd_party/static/testapi-ui/components/results/results.html @@ -35,7 +35,6 @@ <tbody style="white-space: nowrap; overflow: hidden; text-overflow: ellipsis;"> <tr ng-repeat="(index, result) in ctrl.data.tests"> <td>{{ result.upload_date | limitTo:19}}</td> - <td><a ng-click="ctrl.gotoResultDetail(result.id, result._id)">{{ result.id }}</a></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.owner }}</td> <td>{{ result.filename || "None"}}</td> |