Skip to content

Commit

Permalink
fix overlapMap property (#1287)
Browse files Browse the repository at this point in the history
  • Loading branch information
ndufrane authored and mbarto committed Nov 18, 2016
1 parent 1cd3bd7 commit 64e174c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/client/plugins/drawer/Menu.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var Menu = React.createClass({
};
},
componentDidMount() {
if (!this.overlapMap && this.props.show) {
if (!this.props.overlapMap && this.props.show) {
let style = {left: this.props.width, width: `calc(100% - ${this.props.width}px)`};
this.props.changeMapStyle(style, "drawerMenu");
}
Expand Down

0 comments on commit 64e174c

Please sign in to comment.