Make breadcrumb animation run on the compositing layer

This commit is contained in:
Germain Souquet 2021-05-28 09:34:08 +01:00
parent 51d88062f9
commit 1a51ed9ffd
3 changed files with 5 additions and 4 deletions

View file

@ -390,7 +390,7 @@ export class ContextMenu extends React.PureComponent<IProps, IState> {
}
render(): React.ReactChild {
return ReactDOM.createPortal(this.renderMenu(), document.body);
return ReactDOM.createPortal(this.renderMenu(), getOrCreateContainer());
}
}