Skip to content

Commit 5b4275e

Browse files
committed
Bugfix to OptionList.tsx
1 parent 77c5361 commit 5b4275e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/OptionList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ const OptionList: React.RefForwardingComponent<ReviseRefOptionListProps> = (_, r
212212
<div onMouseDown={onListMouseDown}>
213213
{activeEntity && open && (
214214
<span style={HIDDEN_STYLE} aria-live="assertive">
215-
{!labelInAriaLive ? activeEntity.node.value : activeEntity.node.label}
215+
{!labelInAriaLive ? activeEntity.node.value : activeEntity.node.title}
216216
</span>
217217
)}
218218

0 commit comments

Comments
 (0)