ATLAS-3770:- UI(Classic): Active and Deleted hyperlinks for certain entities throwing error on click
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 @@
                 }
                 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();