Skip to content

Commit b30c305

Browse files
Merge pull request #1410 from RodriSanchez1/fix/OutputBarAutoScroll
Fix/output bar auto scroll
2 parents d35b635 + 3a681ad commit b30c305

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

src/components/Board/Output/PhraseShare/PhraseShare.component.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ import {
2222
RedditShareButton,
2323
RedditIcon
2424
} from 'react-share';
25-
import withMobileDialog from '@material-ui/core/withMobileDialog';
2625
import messages from './PhraseShare.messages';
2726

2827
import './PhraseShare.css';
@@ -144,4 +143,4 @@ PhraseShare.propTypes = {
144143
onCopyPhrase: PropTypes.func
145144
};
146145

147-
export default withMobileDialog()(PhraseShare);
146+
export default PhraseShare;

src/components/Board/Output/SymbolOutput/SymbolOutput.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,15 @@ class SymbolOutput extends PureComponent {
5858
try {
5959
const lastOutputSymbol = this.scrollContainerRef.current.lastElementChild;
6060
lastOutputSymbol.scrollIntoView({
61-
behavior: 'smooth',
62-
inline: 'start'
61+
inline: 'end'
6362
});
6463
} catch (err) {
6564
console.error('Error during autoScroll of output bar', err);
6665
}
6766
};
6867

6968
componentDidMount() {
70-
//using a setTimeout to propperly works of scroll in to view depending of screen size render
71-
setTimeout(this.scrollToLastSymbol, 200);
69+
this.scrollToLastSymbol();
7270
}
7371

7472
componentDidUpdate(prevProps) {

0 commit comments

Comments
 (0)