Skip to content

Commit ad0563d

Browse files
authored
fix: Make clickable but non-editable fields navigable. (#9054)
1 parent 8c0ee9f commit ad0563d

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

core/keyboard_nav/field_navigation_policy.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,7 @@ export class FieldNavigationPolicy implements INavigationPolicy<Field<any>> {
9797
isNavigable(current: Field<any>): boolean {
9898
return (
9999
current.canBeFocused() &&
100-
current.isClickable() &&
101-
current.isCurrentlyEditable() &&
100+
(current.isClickable() || current.isCurrentlyEditable()) &&
102101
!(
103102
current.getSourceBlock()?.isSimpleReporter() &&
104103
current.isFullBlockField()

0 commit comments

Comments
 (0)