From 11c0a3e191c9f8b3149d40db8795205503260d73 Mon Sep 17 00:00:00 2001 From: TJ Egan Date: Fri, 13 Mar 2020 10:25:08 -0700 Subject: [PATCH] fix(combo-box): add title attribute to input field --- 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,