From c6df602b945983de10d7c6e21300a36363577083 Mon Sep 17 00:00:00 2001 From: Benjamin Goering Date: Tue, 28 Feb 2017 16:26:15 +0800 Subject: [PATCH] Remove cursor: pointer from BestButton for now. And remove unneeded container --- client/coral-plugin-best/BestButton.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/client/coral-plugin-best/BestButton.js b/client/coral-plugin-best/BestButton.js index dac70c155..0ba36d553 100644 --- a/client/coral-plugin-best/BestButton.js +++ b/client/coral-plugin-best/BestButton.js @@ -89,16 +89,17 @@ export class BestButton extends Component { const {isBest, addBest, removeBest} = this.props; const {isSaving} = this.state; const disabled = isSaving || ! (isBest ? removeBest : addBest); - return
+ return ( -
; + ) } }