diff --git a/ui/scripts/storage.js b/ui/scripts/storage.js index 905e589e8f8..7c34ed3988b 100644 --- a/ui/scripts/storage.js +++ b/ui/scripts/storage.js @@ -1191,8 +1191,10 @@ } } else { // Disk not attached - allowedActions.push("remove"); - allowedActions.push("migrateToAnotherStorage"); + allowedActions.push("remove"); + if(isAdmin()) { + allowedActions.push("migrateToAnotherStorage"); + } if (jsonObj.storagetype == "shared") { allowedActions.push("attachDisk"); }