Repository: atlas Updated Branches: refs/heads/branch-0.8 561dd80cc -> fdecadd1d
ATLAS-2502 : UI - Entity page not rendering tags and loader keeps loading when server 403 during deleting classification Signed-off-by: nixonrodrigues <[email protected]> Signed-off-by: kevalbhatt <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/atlas/repo Commit: http://git-wip-us.apache.org/repos/asf/atlas/commit/fffca550 Tree: http://git-wip-us.apache.org/repos/asf/atlas/tree/fffca550 Diff: http://git-wip-us.apache.org/repos/asf/atlas/diff/fffca550 Branch: refs/heads/branch-0.8 Commit: fffca55039294c98a0dff2705889cdca38cf34ac Parents: 561dd80 Author: kevalbhatt <[email protected]> Authored: Fri Mar 16 13:10:36 2018 +0530 Committer: kevalbhatt <[email protected]> Committed: Tue Jul 31 14:35:04 2018 +0530 ---------------------------------------------------------------------- .../public/js/templates/search/SearchResultLayoutView_tmpl.html | 2 +- dashboardv2/public/js/views/detail_page/DetailPageLayoutView.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/atlas/blob/fffca550/dashboardv2/public/js/templates/search/SearchResultLayoutView_tmpl.html ---------------------------------------------------------------------- diff --git a/dashboardv2/public/js/templates/search/SearchResultLayoutView_tmpl.html b/dashboardv2/public/js/templates/search/SearchResultLayoutView_tmpl.html index 48e7b39..6b7d411 100644 --- a/dashboardv2/public/js/templates/search/SearchResultLayoutView_tmpl.html +++ b/dashboardv2/public/js/templates/search/SearchResultLayoutView_tmpl.html @@ -53,9 +53,9 @@ </div> </div> <div id="r_searchResultTableLayoutView"> + <h1><b>{{searchType}}</b></h1> {{#if entityCreate}} <div class="entityLink" style="display:none"> - <h1><b>{{searchType}}</b></h1> <p class="entityLink">Search Atlas for existing entities or <a href="javascript:void(0)" data-id='createEntity'> create new entity </a> </p> http://git-wip-us.apache.org/repos/asf/atlas/blob/fffca550/dashboardv2/public/js/views/detail_page/DetailPageLayoutView.js ---------------------------------------------------------------------- diff --git a/dashboardv2/public/js/views/detail_page/DetailPageLayoutView.js b/dashboardv2/public/js/views/detail_page/DetailPageLayoutView.js index 2910f51..c5f3e69 100644 --- a/dashboardv2/public/js/views/detail_page/DetailPageLayoutView.js +++ b/dashboardv2/public/js/views/detail_page/DetailPageLayoutView.js @@ -319,6 +319,7 @@ define(['require', 'tagName': tagName, 'guid': that.id, 'tagOrTerm': tagOrTerm, + 'hideLoader': that.hideLoader.bind(that), callback: function() { that.fetchCollection(); }
