@ringcentral/juno 2.41.3 → 2.41.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -245,7 +245,7 @@ var SelectInput = react_1.forwardRef(function (props, ref) {
|
|
|
245
245
|
foundMatch = true;
|
|
246
246
|
}
|
|
247
247
|
return react_1.default.cloneElement(child, {
|
|
248
|
-
'aria-selected': selected ? 'true' :
|
|
248
|
+
'aria-selected': selected ? 'true' : 'false',
|
|
249
249
|
onClick: handleItemClick(child),
|
|
250
250
|
onKeyUp: function (event) {
|
|
251
251
|
if (event.key === ' ') {
|
|
@@ -243,7 +243,7 @@ var SelectInput = forwardRef(function (props, ref) {
|
|
|
243
243
|
foundMatch = true;
|
|
244
244
|
}
|
|
245
245
|
return React.cloneElement(child, {
|
|
246
|
-
'aria-selected': selected ? 'true' :
|
|
246
|
+
'aria-selected': selected ? 'true' : 'false',
|
|
247
247
|
onClick: handleItemClick(child),
|
|
248
248
|
onKeyUp: function (event) {
|
|
249
249
|
if (event.key === ' ') {
|