Fixes RHS not scrolling to show previews when file attached.

Этот коммит содержится в:
JoramWilander
2015-09-25 12:06:43 -04:00
родитель e743ad483a
Коммит 06a7c5e5d7

Просмотреть файл

@@ -43,6 +43,12 @@ export default class CreateComment extends React.Component {
submitting: false
};
}
componentDidUpdate(prevProps, prevState) {
if (prevState.uploadsInProgress < this.state.uploadsInProgress) {
$('.post-right__scroll').scrollTop($('.post-right__scroll')[0].scrollHeight);
$('.post-right__scroll').perfectScrollbar('update');
}
}
handleSubmit(e) {
e.preventDefault();