From 296a732c766a6fe3bd24c63018d25e8fb3b65c1e Mon Sep 17 00:00:00 2001 From: Abhishek Pal Date: Fri, 4 Oct 2024 13:59:44 +0530 Subject: [PATCH] HDDS-11520. Fix Delete pending directories key mapping --- .../recon/ozone-recon-web/src/views/insights/om/om.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/insights/om/om.tsx b/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/insights/om/om.tsx index fdd25929d03b..f092708348b0 100644 --- a/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/insights/om/om.tsx +++ b/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/insights/om/om.tsx @@ -281,8 +281,9 @@ const DELETED_TAB_COLUMNS = [ const PENDINGDIR_TAB_COLUMNS = [ { title: 'Directory Name', - dataIndex: 'path', - key: 'path' + dataIndex: 'key', + isSearchable: true, + key: 'key' }, { title: 'In state since', @@ -294,9 +295,8 @@ const PENDINGDIR_TAB_COLUMNS = [ }, { title: 'Path', - dataIndex: 'key', - key: 'key', - isSearchable: true, + dataIndex: 'path', + key: 'path', width: '450px' }, {