We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac977e7 commit 4a7678aCopy full SHA for 4a7678a
app/js/app-menu.js
@@ -819,8 +819,11 @@ module.exports = function() {
819
// get and set properties from file
820
var properties = chiseInstance.getMapProperties();
821
// init map properties
822
- var mapProperties = ( properties && properties['nwt:mapProperties'] ) ? properties['nwt:mapProperties'] : {};
823
-
+ var mapProperties = (properties && properties['nwt:mapProperties'])
+ ? properties['nwt:mapProperties']
824
+ : (properties && properties.mapProperties)
825
+ ? properties.mapProperties
826
+ : {};
827
var urlParams = appUtilities.getScratch(cy, 'urlParams');
828
829
if (urlParams) {
0 commit comments