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();