Browse Source

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.
closed-social-v3
Claire 2 years ago
committed by Eugen Rochko
parent
commit
77d0297313
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      app/javascript/mastodon/components/modal_root.js

+ 4
- 0
app/javascript/mastodon/components/modal_root.js View File

@ -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…
Cancel
Save