From a8effb0084835b9836622c4e186782e7ffcee7e3 Mon Sep 17 00:00:00 2001 From: Jonas Schwabe Date: Sat, 18 Feb 2017 18:02:02 +0100 Subject: [PATCH] Fix warning due to using style properies named after css properties in react --- src/browser/components/NewTeamModal.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/browser/components/NewTeamModal.jsx b/src/browser/components/NewTeamModal.jsx index 1f0ba9e1..c0d92526 100644 --- a/src/browser/components/NewTeamModal.jsx +++ b/src/browser/components/NewTeamModal.jsx @@ -105,8 +105,8 @@ class NewTeamModal extends React.Component { render() { const noBottomSpaceing = { - 'padding-bottom': 0, - 'margin-bottom': 0 + paddingBottom: 0, + marginBottom: 0 }; if (this.wasShown !== this.props.show && this.props.show) {