mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 11:47:23 +03:00
Fix: Warning: Unsupported style property pointer-events. Did you mean pointerEvents? (#7291)
This commit is contained in:
parent
2bfffab566
commit
12000060a5
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue