Skip to content

Commit

Permalink
default tilemap to empty object instead of array
Browse files Browse the repository at this point in the history
  • Loading branch information
nreese committed Apr 27, 2020
1 parent 5aed5dd commit f0ae4af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/legacy/plugins/maps/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export function maps(kibana) {
emsLandingPageUrl: mapConfig.emsLandingPageUrl,
kbnPkgVersion: serverConfig.get('pkg.version'),
regionmapLayers: _.get(mapConfig, 'regionmap.layers', []),
tilemap: _.get(mapConfig, 'tilemap', []),
tilemap: _.get(mapConfig, 'tilemap', {}),
};
},
styleSheetPaths: `${__dirname}/public/index.scss`,
Expand Down

0 comments on commit f0ae4af

Please sign in to comment.