diff --git a/ui/scripts/sharedFunctions.js b/ui/scripts/sharedFunctions.js index 44f39bb0e23..199969b36ab 100644 --- a/ui/scripts/sharedFunctions.js +++ b/ui/scripts/sharedFunctions.js @@ -252,6 +252,10 @@ cloudStack.actionFilter = { var jsonObj = args.context.item; var allowedActions = []; + if (!isAdmin()) { + return []; + } + if(jsonObj.type == 'Isolated') { allowedActions.push('edit'); //only Isolated network can be upgraded }