diff --git a/ui/scripts/ui/widgets/detailView.js b/ui/scripts/ui/widgets/detailView.js index 7cca1cb81c1..12fe68679ce 100644 --- a/ui/scripts/ui/widgets/detailView.js +++ b/ui/scripts/ui/widgets/detailView.js @@ -165,7 +165,12 @@ } ); }, - error: function(args) { + error: function(args) { //args here is parsed errortext from API response + if(args != null & args.length > 0) { + cloudStack.dialog.notice({ + message: args + }); + } $loading.remove(); } }