Fix media modal prev button behavior. (#4158)
This commit is contained in:
		
				
					committed by
					
						
						Eugen Rochko
					
				
			
			
				
	
			
			
			
						parent
						
							1c6c6b271c
						
					
				
				
					commit
					b21ab498f8
				
			@@ -35,7 +35,7 @@ export default class MediaModal extends ImmutablePureComponent {
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  handlePrevClick = () => {
 | 
			
		||||
    this.setState({ index: (this.getIndex() - 1) % this.props.media.size });
 | 
			
		||||
    this.setState({ index: (this.props.media.size + this.getIndex() - 1) % this.props.media.size });
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  handleKeyUp = (e) => {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user