We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 854b41a + a1683f9 commit 92bbf7dCopy full SHA for 92bbf7d
1 file changed
src/native-common/View.tsx
@@ -62,10 +62,10 @@ export class View extends ViewBase<Types.ViewProps, {}> {
62
this._internalProps.onLayout = this._onLayout;
63
}
64
65
- if (this.props.blockPointerEvents) {
+ if (props.blockPointerEvents) {
66
this._internalProps.pointerEvents = 'none';
67
} else {
68
- if (this.props.ignorePointerEvents) {
+ if (props.ignorePointerEvents) {
69
this._internalProps.pointerEvents = 'box-none';
70
71
0 commit comments