Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Evo-Forge/Essence
Browse files Browse the repository at this point in the history
  • Loading branch information
Hetmann W. Iohan committed Apr 21, 2016
2 parents 5359eb4 + 031c202 commit 8d4729c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/essence-input/lib/input.js
Expand Up @@ -88,7 +88,7 @@ var Input = (function (_React$Component) {
}, {
key: 'renderHint',
value: function renderHint() {
if (!this.props.hint) {
if (this.props.hint) {
return _react2.default.createElement(
'span',
{ className: 'e-hint' },
Expand Down
2 changes: 1 addition & 1 deletion components/essence-input/src/input.jsx
Expand Up @@ -62,7 +62,7 @@ class Input extends React.Component {
}

renderHint() {
if (!this.props.hint) {
if (this.props.hint) {
return (
<span className='e-hint'>
{this.props.hint}
Expand Down

0 comments on commit 8d4729c

Please sign in to comment.