From b7a6a4466942339e300f78b19c5935c9df1ac637 Mon Sep 17 00:00:00 2001 From: Prasad Pawar Date: Wed, 31 Dec 2025 15:20:13 +0530 Subject: [PATCH] ATLAS-5170: IsIncomplete property doesn't show on UI --- dashboard/src/components/commonComponents.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/dashboard/src/components/commonComponents.tsx b/dashboard/src/components/commonComponents.tsx index 604b3c71224..2826e3c4f83 100644 --- a/dashboard/src/components/commonComponents.tsx +++ b/dashboard/src/components/commonComponents.tsx @@ -312,10 +312,8 @@ export const getValues = ( ?.typeName : ""; - if ( - keyValue == "profileData" || - (keyValue == "isIncomplete" && keyValue == false) - ) { + // Filter out profileData, but show isIncomplete (matching Classic UI behavior) + if (keyValue == "profileData") { return; }