From 15f25056f629cc88c52dc5e1f32566409981b40e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9C=A0=EC=A7=80=EC=9D=B8?= Date: Fri, 10 Oct 2025 14:32:35 +0900 Subject: [PATCH] =?UTF-8?q?API=20=EA=B4=80=EB=A6=AC=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../admins/mgmtApi/api-request-statistics-index.jsp | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) 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); }); }