Skip to content

Commit

Permalink
Change css so warning does now throw
Browse files Browse the repository at this point in the history
  • Loading branch information
casesandberg committed Aug 11, 2015
1 parent a324fcd commit 44031c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/common/EditableInput.jsx
Expand Up @@ -20,9 +20,9 @@ class EditableInput extends ReactCSS.Component {
classes() {
return {
'user-override': {
wrap: this.props.style && this.props.style.wrap,
input: this.props.style && this.props.style.input,
label: this.props.style && this.props.style.label,
wrap: this.props.style && this.props.style.wrap ? this.props.style.wrap : {},
input: this.props.style && this.props.style.input ? this.props.style.input : {},
label: this.props.style && this.props.style.label ? this.props.style.label : {},
},
'dragLabel-true': {
label: {
Expand Down

0 comments on commit 44031c6

Please sign in to comment.