CLOUDSTACK-537: cloudstack UI - Advanced SG-Enabled zone - Network menu - guest network section - fix an JS error "advSgDisabledZones is undefined".

This commit is contained in:
Jessica Wang 2012-11-27 11:06:34 -08:00
parent 0a19630b5a
commit 2e3bedda10
1 changed files with 1 additions and 1 deletions

View File

@ -319,7 +319,7 @@
});
}
});
return (advSgDisabledZones.length > 0);
return (advSgDisabledZones != null && advSgDisabledZones.length > 0);
},
createForm: {