Browse Source

Merge branch 'master' of http://git.choozmo.com:3000/choozmo/AI_Anchor_2

ming 3 years ago
parent
commit
f71ac0bc4c
1 changed files with 1 additions and 2 deletions
  1. 1 2
      html/static/script_util.js

+ 1 - 2
html/static/script_util.js

@@ -301,13 +301,12 @@ function openNav() {
     url: 'https://www.choozmo.com:8887/history_input',
     headers: { 
         'accept': 'application/json',
-        'Access-Control-Allow-Origin': '*',
         'Authorization': `Bearer ${jwt_token}`
      }
   }).then(res => {
     console.log(res.data);
     loaded_data = res.data;
-    for (var obj of data) {
+    for (var obj of loaded_data) {
       var historyList = document.querySelector('.historyList');
       var list = document.createElement('li');
       list.id = obj.id;