From 392d48a8d8d1817649f6d76bafc0a19d818194e4 Mon Sep 17 00:00:00 2001 From: Thomas Guillory Date: Thu, 10 Mar 2016 18:43:13 +0100 Subject: [PATCH] [TextField] Fix bad hint text show condition in edb8ad9c The hint text show condition resolves to `undefined` when `floatingLabelFixed` property is not passed, which result in the hint text being shown at the same time than the floating label. --- src/TextField/TextField.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/TextField/TextField.jsx b/src/TextField/TextField.jsx index 5f31da69c2791a..c83858e4294a5a 100644 --- a/src/TextField/TextField.jsx +++ b/src/TextField/TextField.jsx @@ -289,6 +289,7 @@ const TextField = React.createClass({ getDefaultProps() { return { disabled: false, + floatingLabelFixed: false, multiLine: false, fullWidth: false, type: 'text',