mirror of https://github.com/vector-im/riot-web
Fix: Warning: Unsupported style property pointer-events. Did you mean pointerEvents? (#7291)
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 appTileBodyClass = 'mx_AppTileBody' + (this.props.miniMode ? '_mini ' : ' ');
|
||||||
const appTileBodyStyles = {};
|
const appTileBodyStyles = {};
|
||||||
if (this.props.pointerEvents) {
|
if (this.props.pointerEvents) {
|
||||||
appTileBodyStyles['pointer-events'] = this.props.pointerEvents;
|
appTileBodyStyles['pointerEvents'] = this.props.pointerEvents;
|
||||||
}
|
}
|
||||||
|
|
||||||
const loadingElement = (
|
const loadingElement = (
|
||||||
|
|
Loading…
Reference in New Issue