added missing glyphs property check on styleChanged - addresses #229

This commit is contained in:
jPalmer 2018-01-31 11:28:09 -08:00
parent d9b6f28bb5
commit 844abd38ce

View file

@ -117,10 +117,9 @@ export default class App extends React.Component {
this.setState({ this.setState({
errors:[error] errors:[error]
}) })
console.error(error)
return return
} }
if(newStyle.glyphs !== this.state.mapStyle.glyphs) { if(newStyle.glyphs !== this.state.mapStyle.glyphs) {
this.updateFonts(newStyle.glyphs) this.updateFonts(newStyle.glyphs)
} }