This is an automated email from the ASF dual-hosted git repository. kbhatt pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/atlas.git
commit fbf7b7e155965647c2682d74f7bc2f235e231ab0 Author: kevalbhatt <[email protected]> AuthorDate: Wed Oct 9 19:53:44 2019 +0530 ATLAS-3448: UI: Regression, Interactive Lineage operations are not working as expected (cherry picked from commit 7ba3213eca2ad9be9dde97502c2d56896870d9d6) --- dashboardv2/public/js/views/graph/LineageLayoutView.js | 4 ++-- dashboardv3/public/js/views/graph/LineageLayoutView.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dashboardv2/public/js/views/graph/LineageLayoutView.js b/dashboardv2/public/js/views/graph/LineageLayoutView.js index e7b5a27..f6a8d00 100644 --- a/dashboardv2/public/js/views/graph/LineageLayoutView.js +++ b/dashboardv2/public/js/views/graph/LineageLayoutView.js @@ -561,9 +561,9 @@ define(['require', shapeSvg.attr("stroke", "#fb4200") } if (node.isIncomplete === true) { - parent.attr("class", "isIncomplete show"); + parent.attr("class", "node isIncomplete show"); } else { - parent.attr("class", "isIncomplete"); + parent.attr("class", "node isIncomplete"); } parent.insert("defs") diff --git a/dashboardv3/public/js/views/graph/LineageLayoutView.js b/dashboardv3/public/js/views/graph/LineageLayoutView.js index 8dfdfc5..2dbe01f 100644 --- a/dashboardv3/public/js/views/graph/LineageLayoutView.js +++ b/dashboardv3/public/js/views/graph/LineageLayoutView.js @@ -576,9 +576,9 @@ define(['require', shapeSvg.attr("stroke", "#fb4200") } if (node.isIncomplete === true) { - parent.attr("class", "isIncomplete show"); + parent.attr("class", "node isIncomplete show"); } else { - parent.attr("class", "isIncomplete"); + parent.attr("class", "node isIncomplete"); } parent.insert("defs")
