We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22ddea9 commit 2d97559Copy full SHA for 2d97559
packages/@react-aria/selection/src/ListKeyboardDelegate.ts
@@ -69,13 +69,13 @@ export class ListKeyboardDelegate<T> implements KeyboardDelegate {
69
Object.defineProperty(this, 'getKeyRightOf', {
70
get() { return this.layout === 'stack' && this.getOrientation() === 'vertical' ? undefined : getKeyRightOf; },
71
configurable: true,
72
- enumerable: false
+ enumerable: true
73
});
74
75
Object.defineProperty(this, 'getKeyLeftOf', {
76
get() { return this.layout === 'stack' && this.getOrientation() === 'vertical' ? undefined : getKeyLeftOf; },
77
78
79
80
}
81
0 commit comments