From 63111c43c5347adc38d999e07cb0b9ddc63511d8 Mon Sep 17 00:00:00 2001 From: Brian Federle Date: Wed, 28 Mar 2012 10:36:30 -0700 Subject: [PATCH] bug 14098 Always allow edit guest network action, for both basic and advanced zones. --- ui/scripts/system.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ui/scripts/system.js b/ui/scripts/system.js index 32892165057..8e2e532b119 100644 --- a/ui/scripts/system.js +++ b/ui/scripts/system.js @@ -881,9 +881,8 @@ args.response.success({ actionFilter: function() { - var allowedActions = []; - if(selectedZoneObj.networktype == "Advanced") - allowedActions.push("edit"); + var allowedActions = ['edit']; + return allowedActions; }, data: selectedPhysicalNetworkObj