~cytrogen/masto-fe

ed96e28c9e47a0b7e3cdf538772d37d9b16ddc89 — Claire 2 years ago 7b024ba
Fix compose form not being shown when clicking “Make your first post” on mobile (#25581)

1 files changed, 2 insertions(+), 2 deletions(-)

M app/javascript/mastodon/actions/compose.js
M app/javascript/mastodon/actions/compose.js => app/javascript/mastodon/actions/compose.js +2 -2
@@ 129,13 129,13 @@ export function resetCompose() {
  };
}

export const focusCompose = (routerHistory, defaultText) => dispatch => {
export const focusCompose = (routerHistory, defaultText) => (dispatch, getState) => {
  dispatch({
    type: COMPOSE_FOCUS,
    defaultText,
  });

  ensureComposeIsVisible(routerHistory);
  ensureComposeIsVisible(getState, routerHistory);
};

export function mentionCompose(account, routerHistory) {