From c8caeeda8c3a7cee649f34163673ccd8eea30f8f Mon Sep 17 00:00:00 2001 From: eastargh Date: Tue, 9 Jun 2026 13:04:32 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9C=A0=EB=9F=89=EC=A0=9C=EC=96=B4=20?= =?UTF-8?q?=EB=AA=A8=EB=8B=88=ED=84=B0=EB=A7=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../admin/inflow/inflowClientControlManDetail.jsp | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/WebContent/jsp/onl/admin/inflow/inflowClientControlManDetail.jsp b/WebContent/jsp/onl/admin/inflow/inflowClientControlManDetail.jsp index 5dbe333..db4bf9a 100644 --- a/WebContent/jsp/onl/admin/inflow/inflowClientControlManDetail.jsp +++ b/WebContent/jsp/onl/admin/inflow/inflowClientControlManDetail.jsp @@ -194,19 +194,6 @@ function renderBucketStatus(servers) { $('#summaryThresholdWrap').hide(); } - // 활성 API 정보 표시 - var activeApis = interfaceList.filter(function(item) { - return item.useYn === '1' || item.useYn === undefined; - }); - $('#summaryActiveApi').html(activeApis.length + ''); - if (activeApis.length > 0) { - var apiIds = activeApis.map(function(item) { return item.interfaceId; }); - var displayText = apiIds.length <= 3 ? apiIds.join(', ') : apiIds.slice(0, 3).join(', ') + ' 외 ' + (apiIds.length - 3) + '개'; - $('#summaryActiveApiList').text(displayText); - } else { - $('#summaryActiveApiList').text(''); - } - $('#bucketSummary').show(); } else { $('#bucketSummary').hide();