From d235dee2e4e905cbaf17d9b7f61fda4b46e5e937 Mon Sep 17 00:00:00 2001 From: Harry Kao Date: Wed, 10 Jan 2018 14:41:31 -0800 Subject: [PATCH] Fix rendering with arrowRenderer and no autosize. The container for the input element lacked "display: inline-block", which is present on both the AutosizeInput component and the disabled version of the component. --- src/Select.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Select.js b/src/Select.js index 75d25a7a66..29d127d6be 100644 --- a/src/Select.js +++ b/src/Select.js @@ -925,7 +925,7 @@ class Select extends React.Component { ); } return ( -
+
);