mirror of https://github.com/apache/cloudstack.git
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:
parent
0a19630b5a
commit
2e3bedda10
|
|
@ -319,7 +319,7 @@
|
|||
});
|
||||
}
|
||||
});
|
||||
return (advSgDisabledZones.length > 0);
|
||||
return (advSgDisabledZones != null && advSgDisabledZones.length > 0);
|
||||
},
|
||||
|
||||
createForm: {
|
||||
|
|
|
|||
Loading…
Reference in New Issue