Skip to content

Commit e189c98

Browse files
committed
correct tab index
1 parent 63449c5 commit e189c98

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/component/src/Activity/private/FeedbackTextArea.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ const TextArea = forwardRef<
9393
ref={ref}
9494
rows={props.startRows ?? 1}
9595
// eslint-disable-next-line no-magic-numbers
96-
tabIndex={props.hidden ? -1 : undefined}
96+
tabIndex={props.hidden || disabled ? -1 : undefined}
9797
value={props.value}
9898
/>
9999
</Fragment>

0 commit comments

Comments
 (0)