This is an automated email from the ASF dual-hosted git repository. ppawar pushed a commit to branch ATLAS-5170 in repository https://gitbox.apache.org/repos/asf/atlas.git
commit b7a6a4466942339e300f78b19c5935c9df1ac637 Author: Prasad Pawar <[email protected]> AuthorDate: Wed Dec 31 15:20:13 2025 +0530 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 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; }
