This is an automated email from the ASF dual-hosted git repository. ppawar pushed a commit to branch atlas-2.5 in repository https://gitbox.apache.org/repos/asf/atlas.git
commit 796616b3c2105178053673035bafc92554b70840 Author: Prasad Pawar <[email protected]> AuthorDate: Fri Jan 2 10:06:15 2026 +0530 ATLAS-5170: IsIncomplete property doesn't show on UI (#491) ( cherry-picked from ca89c6a26f0c74aafffa999c758e85b200c36214) --- 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 604b3c712..2826e3c4f 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; }
