Skip to content

Commit

Permalink
review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
nreese committed Apr 28, 2020
1 parent 36c2c2c commit 49e36cd
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,21 +66,21 @@ export class TOCEntryActionsPopover extends Component<Props, State> {
}));
};

_cloneLayer = () => {
_cloneLayer() {
this.props.cloneLayer(this.props.layer.getId());
};
}

_fitToBounds = () => {
_fitToBounds() {
this.props.fitToBounds(this.props.layer.getId());
};
}

_removeLayer = () => {
_removeLayer() {
this.props.fitToBounds(this.props.layer.getId());
};
}

_toggleVisible = () => {
_toggleVisible() {
this.props.toggleVisible(this.props.layer.getId());
};
}

_renderPopoverToggleButton() {
const { icon, tooltipContent, footnotes } = this.props.layer.getIconAndTooltipContent(
Expand Down

0 comments on commit 49e36cd

Please sign in to comment.