diff --git a/src/sunstone/public/app/utils/common-actions.js b/src/sunstone/public/app/utils/common-actions.js index 8f3598f0c6..b34bf10d61 100644 --- a/src/sunstone/public/app/utils/common-actions.js +++ b/src/sunstone/public/app/utils/common-actions.js @@ -55,7 +55,10 @@ define(function(require) { type: "list", call: that.openNebulaResource.list, callback: function(request, response) { - Sunstone.getDataTable(that.tabId).updateView(request, response); + var datatable = Sunstone.getDataTable(that.tabId); + if (datatable){ + datatable.updateView(request, response); + } }, error: Notifier.onError }