소스 검색

Fix boost to original audience not working on mobile (#11371)

master^2
ThibG 4 년 전
committed by Eugen Rochko
부모
커밋
59fd622adc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      app/javascript/mastodon/containers/status_container.js

+ 1
- 1
app/javascript/mastodon/containers/status_container.js 파일 보기

@@ -77,7 +77,7 @@ const mapDispatchToProps = (dispatch, { intl }) => ({
},

onReblog (status, e) {
if (e.shiftKey || !boostModal) {
if ((e && e.shiftKey) || !boostModal) {
this.onModalReblog(status);
} else {
dispatch(openModal('BOOST', { status, onReblog: this.onModalReblog }));


불러오는 중...
취소
저장