summaryrefslogtreecommitdiff
path: root/views
diff options
context:
space:
mode:
authorRafael Marçalo <raroma09@gmail.com>2022-10-22 19:14:40 +0100
committerRafael Marçalo <raroma09@gmail.com>2022-10-22 19:14:40 +0100
commit4f26ab9c157fe3c395f7e452120a97bc8cb8d8d8 (patch)
tree38bf4176c9de00be4c8be7941ad807f542b6d36d /views
parent00c740712c3b56aba08416d386529f0104628c45 (diff)
Replaced axios with stock nodejs https library
Diffstat (limited to 'views')
-rw-r--r--views/result.ejs2
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>