From 854c1b21fc2fd7f7c3be391ac4ea2008a979b24b Mon Sep 17 00:00:00 2001 From: TJ Egan Date: Tue, 24 Mar 2020 09:27:26 -0700 Subject: [PATCH] fix(combo-box): add title attribute to input field (#5621) Co-authored-by: Josh Black --- packages/react/src/components/ComboBox/ComboBox.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/react/src/components/ComboBox/ComboBox.js b/packages/react/src/components/ComboBox/ComboBox.js index c9bd5fc818ca..253f19ac76e2 100644 --- a/packages/react/src/components/ComboBox/ComboBox.js +++ b/packages/react/src/components/ComboBox/ComboBox.js @@ -354,6 +354,7 @@ export default class ComboBox extends React.Component { aria-owns={isOpen ? `${id}__menu` : null} aria-autocomplete="list" ref={this.textInput} + title={inputValue} {...rest} {...getInputProps({ disabled,