mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-04 19:56:45 +02:00
Fix: Warning: Unsupported style property pointer-events. Did you mean pointerEvents? (#7291)
This commit is contained in:
parent
2bfffab566
commit
12000060a5
@ -443,7 +443,7 @@ export default class AppTile extends React.Component<IProps, IState> {
|
||||
const appTileBodyClass = 'mx_AppTileBody' + (this.props.miniMode ? '_mini ' : ' ');
|
||||
const appTileBodyStyles = {};
|
||||
if (this.props.pointerEvents) {
|
||||
appTileBodyStyles['pointer-events'] = this.props.pointerEvents;
|
||||
appTileBodyStyles['pointerEvents'] = this.props.pointerEvents;
|
||||
}
|
||||
|
||||
const loadingElement = (
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user