diff --git a/src/Async.js b/src/Async.js index a92d8c4466..f8e354b6e9 100644 --- a/src/Async.js +++ b/src/Async.js @@ -173,7 +173,7 @@ export default class Async extends Component { const props = { noResultsText: this.noResultsText(), placeholder: isLoading ? loadingPlaceholder : placeholder, - options: isLoading ? [] : options, + options: (isLoading && loadingPlaceholder) ? [] : options, ref: (ref) => (this.select = ref) };