Commit 9d1f8b9d6af1d384a4dd68bc6353a2fde5735b33 scrolls the columns area when the route changes since the user is likely to want to see the rightmost column in such cases. However, redirection is automatic and does not indicate users' intension. Do not scroll the columns area due to one.
		
			
				
	
	
		
			9 lines
		
	
	
		
			269 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			269 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import { connect } from 'react-redux';
 | |
| import ColumnsArea from '../components/columns_area';
 | |
| 
 | |
| const mapStateToProps = state => ({
 | |
|   columns: state.getIn(['settings', 'columns']),
 | |
| });
 | |
| 
 | |
| export default connect(mapStateToProps, null, null, { withRef: true })(ColumnsArea);
 |