diff --git a/src/main/webapp/WEB-INF/views/admins/mgmtApi/api-request-statistics-index.jsp b/src/main/webapp/WEB-INF/views/admins/mgmtApi/api-request-statistics-index.jsp
index 82c3ba7..55f6ef4 100644
--- a/src/main/webapp/WEB-INF/views/admins/mgmtApi/api-request-statistics-index.jsp
+++ b/src/main/webapp/WEB-INF/views/admins/mgmtApi/api-request-statistics-index.jsp
@@ -379,7 +379,7 @@
| /API_CHA_085/request |
POST |
@@ -538,16 +538,7 @@
pageData.forEach(row => {
const tr = document.createElement("tr");
- tr.innerHTML = `
- ${row.api} |
- ${row.method} |
- ${row.params} |
- ${row.status} |
- ${row.time} |
-
- ${getResultIcon(row.result)} ${row.result}
- |
- `;
+ tr.innerHTML += '' + row.api + ' | ' + row.method + ' | ' + row.params + ' | ' + row.status + ' | ' + row.time + ' | ' + getResultIcon(row.result) + ' ' +row.result + ' | ';
tableBody.appendChild(tr);
});
}