diff options
author | Serena Feng <feng.xiaowei@zte.com.cn> | 2017-06-08 10:27:34 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-06-08 10:27:34 +0000 |
commit | cbc58539840703258c7e2451145222b9483b5abc (patch) | |
tree | 12b22de43acbe080e0b77f325ae173686e71948e /utils/test/testapi/3rd_party/static/testapi-ui/components | |
parent | 26f47542741f17b0d534565fc1cc6a6e6948dd35 (diff) | |
parent | 165885e2466f1e6f386ab9f6b16da7a439123035 (diff) |
Merge "add filter based on begin&end time of start_date"
Diffstat (limited to 'utils/test/testapi/3rd_party/static/testapi-ui/components')
-rw-r--r-- | utils/test/testapi/3rd_party/static/testapi-ui/components/results/resultsController.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/test/testapi/3rd_party/static/testapi-ui/components/results/resultsController.js b/utils/test/testapi/3rd_party/static/testapi-ui/components/results/resultsController.js index 39ace00eb..93a549a7f 100644 --- a/utils/test/testapi/3rd_party/static/testapi-ui/components/results/resultsController.js +++ b/utils/test/testapi/3rd_party/static/testapi-ui/components/results/resultsController.js @@ -111,11 +111,11 @@ var start = $filter('date')(ctrl.startDate, 'yyyy-MM-dd'); if (start) { content_url = - content_url + '&start_date=' + start + ' 00:00:00'; + content_url + '&from=' + start + ' 00:00:00'; } var end = $filter('date')(ctrl.endDate, 'yyyy-MM-dd'); if (end) { - content_url = content_url + '&end_date=' + end + ' 23:59:59'; + content_url = content_url + '&to=' + end + ' 23:59:59'; } if (ctrl.isUserResults) { content_url = content_url + '&signed'; |