Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 1200006

Browse files
authored
Fix: Warning: Unsupported style property pointer-events. Did you mean pointerEvents? (#7291)
1 parent 2bfffab commit 1200006

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/views/elements/AppTile.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ export default class AppTile extends React.Component<IProps, IState> {
443443
const appTileBodyClass = 'mx_AppTileBody' + (this.props.miniMode ? '_mini ' : ' ');
444444
const appTileBodyStyles = {};
445445
if (this.props.pointerEvents) {
446-
appTileBodyStyles['pointer-events'] = this.props.pointerEvents;
446+
appTileBodyStyles['pointerEvents'] = this.props.pointerEvents;
447447
}
448448

449449
const loadingElement = (

0 commit comments

Comments
 (0)