Repository: atlas
Updated Branches:
  refs/heads/master e05ed85fe -> b455040d0


ATLAS-3010: UI - Lineage hide process filter is not working

Signed-off-by: kevalbhatt <kbh...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/atlas/repo
Commit: http://git-wip-us.apache.org/repos/asf/atlas/commit/3871be8b
Tree: http://git-wip-us.apache.org/repos/asf/atlas/tree/3871be8b
Diff: http://git-wip-us.apache.org/repos/asf/atlas/diff/3871be8b

Branch: refs/heads/master
Commit: 3871be8b1e5496214b6d6adf1ee4c334d54f54b6
Parents: e05ed85
Author: Abhishek Kadam <abhishek.kada...@gmail.com>
Authored: Thu Jan 10 12:49:28 2019 +0530
Committer: kevalbhatt <kbh...@apache.org>
Committed: Thu Jan 10 19:24:42 2019 +0530

----------------------------------------------------------------------
 dashboardv2/public/js/views/graph/LineageLayoutView.js | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/atlas/blob/3871be8b/dashboardv2/public/js/views/graph/LineageLayoutView.js
----------------------------------------------------------------------
diff --git a/dashboardv2/public/js/views/graph/LineageLayoutView.js 
b/dashboardv2/public/js/views/graph/LineageLayoutView.js
index 2f64f1e..804dbe7 100644
--- a/dashboardv2/public/js/views/graph/LineageLayoutView.js
+++ b/dashboardv2/public/js/views/graph/LineageLayoutView.js
@@ -204,6 +204,9 @@ define(['require',
                 var that = this;
 
                 function isProcess(typeName) {
+                    if (typeName == "Process") {
+                        return true;
+                    }
                     var entityDef = 
that.entityDefCollection.fullCollection.find({ name: typeName });
                     return _.contains(Utils.getNestedSuperTypes({ data: 
entityDef.toJSON(), collection: that.entityDefCollection }), "Process")
                 }

Reply via email to