This is an automated email from the ASF dual-hosted git repository.
kbhatt 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 21b1584 ATLAS-3770:- UI(Classic): Active and Deleted hyperlinks for
certain entities throwing error on click
21b1584 is described below
commit 21b15842fd74bc91910b2d8901dbea57769065d0
Author: kevalbhatt <[email protected]>
AuthorDate: Fri Jun 5 19:45:49 2020 +0530
ATLAS-3770:- UI(Classic): Active and Deleted hyperlinks for certain
entities throwing error on click
---
dashboardv2/public/js/router/Router.js | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dashboardv2/public/js/router/Router.js
b/dashboardv2/public/js/router/Router.js
index 9172aea..5e94597 100644
--- a/dashboardv2/public/js/router/Router.js
+++ b/dashboardv2/public/js/router/Router.js
@@ -279,15 +279,15 @@ define([
}
var isinitialView = true,
isTypeTagNotExists = false,
- tempParam = _.extend({}, paramObj);
+ tempParam = $.extend(true, {}, paramObj);
that.renderViewIfNotExists(that.getHeaderOptions(Header));
that.renderViewIfNotExists({
view: App.rSideNav,
manualRender: function() {
-
this.view.currentView.RSearchLayoutView.currentView.manualRender(paramObj);
+
this.view.currentView.RSearchLayoutView.currentView.manualRender(tempParam);
},
render: function() {
- return new SideNavLayoutView(_.extend({ 'value':
paramObj }, options));
+ return new SideNavLayoutView(_.extend({ 'value':
tempParam }, options));
}
});
App.rSideNav.currentView.selectTab();