File tree 2 files changed +3
-6
lines changed
src/components/Board/Output
2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ import {
22
22
RedditShareButton ,
23
23
RedditIcon
24
24
} from 'react-share' ;
25
- import withMobileDialog from '@material-ui/core/withMobileDialog' ;
26
25
import messages from './PhraseShare.messages' ;
27
26
28
27
import './PhraseShare.css' ;
@@ -144,4 +143,4 @@ PhraseShare.propTypes = {
144
143
onCopyPhrase : PropTypes . func
145
144
} ;
146
145
147
- export default withMobileDialog ( ) ( PhraseShare ) ;
146
+ export default PhraseShare ;
Original file line number Diff line number Diff line change @@ -58,17 +58,15 @@ class SymbolOutput extends PureComponent {
58
58
try {
59
59
const lastOutputSymbol = this . scrollContainerRef . current . lastElementChild ;
60
60
lastOutputSymbol . scrollIntoView ( {
61
- behavior : 'smooth' ,
62
- inline : 'start'
61
+ inline : 'end'
63
62
} ) ;
64
63
} catch ( err ) {
65
64
console . error ( 'Error during autoScroll of output bar' , err ) ;
66
65
}
67
66
} ;
68
67
69
68
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 ( ) ;
72
70
}
73
71
74
72
componentDidUpdate ( prevProps ) {
You can’t perform that action at this time.
0 commit comments