From 88da6cd3d94d72eb22e002df695dc7c2b7d1dc76 Mon Sep 17 00:00:00 2001 From: Sam D Date: Fri, 21 Dec 2018 18:00:30 -0500 Subject: [PATCH] fix/remove indented empty lines --- lib/components/tab.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/components/tab.js b/lib/components/tab.js index 8c1e60a5..0b10e044 100644 --- a/lib/components/tab.js +++ b/lib/components/tab.js @@ -8,7 +8,7 @@ export default class Tab extends React.PureComponent { this.handleBlur = this.handleBlur.bind(this); this.handleClick = this.handleClick.bind(this); this.handleMouseUp = this.handleMouseUp.bind(this); - + this.state = { hovered: false }; @@ -33,10 +33,10 @@ export default class Tab extends React.PureComponent { this.props.onSelect(); } } - + handleMouseUp(event) { const isMiddleClick = event.nativeEvent.which === 2; - + if (isMiddleClick) { this.props.onClose(); }