From 5306d54726bda1f21d6d9f9d5dcdd0b23f1e3251 Mon Sep 17 00:00:00 2001 From: deveshsingh Date: Thu, 13 Mar 2025 23:08:02 +0530 Subject: [PATCH] HDDS-12588. Ozone Recon - Containers page has incorrect label for count for the number of blocks for various unhealthy states of containers. --- .../src/views/missingContainers/missingContainers.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/missingContainers/missingContainers.tsx b/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/missingContainers/missingContainers.tsx index fff4a05a5036..5d107ab3d909 100644 --- a/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/missingContainers/missingContainers.tsx +++ b/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/missingContainers/missingContainers.tsx @@ -130,7 +130,7 @@ const CONTAINER_TAB_COLUMNS = [ sorter: (a: IContainerResponse, b: IContainerResponse) => a.containerID - b.containerID }, { - title: 'No. of Keys', + title: 'No. of Blocks', dataIndex: 'keys', key: 'keys', sorter: (a: IContainerResponse, b: IContainerResponse) => a.keys - b.keys