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


The following commit(s) were added to refs/heads/branch-2.0 by this push:
     new 458d9b9  ATLAS-3770:- UI(Classic): Active and Deleted hyperlinks for 
certain entities throwing error on click
458d9b9 is described below

commit 458d9b94f5b2897f19cc297f580106da263a1112
Author: kevalbhatt <kbh...@apache.org>
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();

Reply via email to