diff options
author | Rafael Marçalo <raroma09@gmail.com> | 2022-10-22 19:14:40 +0100 |
---|---|---|
committer | Rafael Marçalo <raroma09@gmail.com> | 2022-10-22 19:14:40 +0100 |
commit | 4f26ab9c157fe3c395f7e452120a97bc8cb8d8d8 (patch) | |
tree | 38bf4176c9de00be4c8be7941ad807f542b6d36d /views | |
parent | 00c740712c3b56aba08416d386529f0104628c45 (diff) |
Replaced axios with stock nodejs https library
Diffstat (limited to 'views')
-rw-r--r-- | views/result.ejs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/result.ejs b/views/result.ejs index b4ba849..47ecdee 100644 --- a/views/result.ejs +++ b/views/result.ejs @@ -17,7 +17,7 @@ </tr> </thead> <tbody class="table-group-divider"> - <% results.data.forEach(result => { %> + <% results.forEach(result => { %> <tr> <td class="text-start text-white limit-text"><%= result.name %></td> <td class="text-white"><%= functions.getCategory(parseInt(result.category)) %></td> |