Fix replying from modal (#16516)
Fixes #16515 Not using a router object somehow made `this.history` lag behind the real browser history whenever pushing a new history item in `replyCompose`. Not using the context-provided router in this case was an oversight made when porting glitch-soc changes in #16499.
This commit is contained in:
parent
211d5c3c30
commit
e54a65013d
1 changed files with 4 additions and 0 deletions
|
@ -6,6 +6,10 @@ import { multiply } from 'color-blend';
|
|||
|
||||
export default class ModalRoot extends React.PureComponent {
|
||||
|
||||
static contextTypes = {
|
||||
router: PropTypes.object,
|
||||
};
|
||||
|
||||
static propTypes = {
|
||||
children: PropTypes.node,
|
||||
onClose: PropTypes.func.isRequired,
|
||||
|
|
Loading…
Reference in a new issue