소스 검색

Put space before image (#1735)

master
Rachel H 7 년 전
committed by Eugen
부모
커밋
5abd543766
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      app/assets/javascripts/components/reducers/compose.jsx

+ 1
- 1
app/assets/javascripts/components/reducers/compose.jsx 파일 보기

@@ -77,8 +77,8 @@ function appendMedia(state, media) {
map.update('media_attachments', list => list.push(media));
map.set('is_uploading', false);
map.set('resetFileKey', Math.floor((Math.random() * 0x10000)));
map.update('text', oldText => `${oldText.trim()} ${media.get('text_url')}`);
map.set('focusDate', new Date());
map.update('text', oldText => `${oldText.trim()} ${media.get('text_url')}`.trim() + ' ');
});
};



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