summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE-common/client/app/views/tabs/tabs.controller.js
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-portal-FE-common/client/app/views/tabs/tabs.controller.js')
-rw-r--r--ecomp-portal-FE-common/client/app/views/tabs/tabs.controller.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/ecomp-portal-FE-common/client/app/views/tabs/tabs.controller.js b/ecomp-portal-FE-common/client/app/views/tabs/tabs.controller.js
index 2bf812e4..c4b31ef2 100644
--- a/ecomp-portal-FE-common/client/app/views/tabs/tabs.controller.js
+++ b/ecomp-portal-FE-common/client/app/views/tabs/tabs.controller.js
@@ -266,7 +266,8 @@
},false);
$scope.openModal = function(data){
- schedulerService.showWidget(data.widgetName,data.widgetData,data.widgetParameter).then(isConfirmed => {});
+ if(data!=null && data!='' && data.widgetData!=null)
+ schedulerService.showWidget(data.widgetName,data.widgetData,data.widgetParameter).then(isConfirmed => {});
}
}
}