This is an automated email from the ASF dual-hosted git repository.

ppawar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git


The following commit(s) were added to refs/heads/master by this push:
     new ca89c6a26 ATLAS-5170: IsIncomplete property doesn't show on UI (#491)
ca89c6a26 is described below

commit ca89c6a26f0c74aafffa999c758e85b200c36214
Author: Prasad Pawar <[email protected]>
AuthorDate: Fri Jan 2 10:06:15 2026 +0530

    ATLAS-5170: IsIncomplete property doesn't show on UI (#491)
---
 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;
   }
 

Reply via email to