From ed9f879f873c0b5b62ef36571a51aa8bcf466c11 Mon Sep 17 00:00:00 2001 From: Max Hubenthal Date: Wed, 17 May 2017 12:47:29 -0400 Subject: [PATCH] Fix aria owns value (#1556) --- src/Select.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/Select.js b/src/Select.js index 20b454e45a..d744ac92d5 100644 --- a/src/Select.js +++ b/src/Select.js @@ -868,12 +868,17 @@ const Select = createClass({ if (this.props.disabled || !this.props.searchable) { const { inputClassName, ...divProps } = this.props.inputProps; + + const ariaOwns = classNames({ + [this._instancePrefix + '-list']: isOpen, + }); + return (