Skip to content

Commit 2d97559

Browse files
authored
fix: enumerable keys
1 parent 22ddea9 commit 2d97559

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/@react-aria/selection/src/ListKeyboardDelegate.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,13 @@ export class ListKeyboardDelegate<T> implements KeyboardDelegate {
6969
Object.defineProperty(this, 'getKeyRightOf', {
7070
get() { return this.layout === 'stack' && this.getOrientation() === 'vertical' ? undefined : getKeyRightOf; },
7171
configurable: true,
72-
enumerable: false
72+
enumerable: true
7373
});
7474

7575
Object.defineProperty(this, 'getKeyLeftOf', {
7676
get() { return this.layout === 'stack' && this.getOrientation() === 'vertical' ? undefined : getKeyLeftOf; },
7777
configurable: true,
78-
enumerable: false
78+
enumerable: true
7979
});
8080
}
8181

0 commit comments

Comments
 (0)