From d113541ccdd4a784eab211250c0b88c29eff7c9a Mon Sep 17 00:00:00 2001 From: Tina Quach <quacht@mit.edu> Date: Thu, 2 Nov 2017 17:03:14 -0400 Subject: [PATCH] nit single quotes --- src/containers/sprite-info.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/containers/sprite-info.jsx b/src/containers/sprite-info.jsx index baea1f818..f4b5ca696 100644 --- a/src/containers/sprite-info.jsx +++ b/src/containers/sprite-info.jsx @@ -27,13 +27,13 @@ class SpriteInfo extends React.Component { this.props.onChangeVisibility(false); } handlePressVisible (e) { - if (e.key === " " || e.key === "Enter") { + if (e.key === ' ' || e.key === 'Enter') { e.preventDefault(); this.props.onChangeVisibility(true); } } handlePressNotVisible (e) { - if (e.key === " " || e.key === "Enter") { + if (e.key === ' ' || e.key === 'Enter') { e.preventDefault(); this.props.onChangeVisibility(false); } -- GitLab