mirror of https://github.com/tootsuite/mastodon
Fix media modal prev button behavior. (#4158)
parent
1c6c6b271c
commit
b21ab498f8
|
@ -35,7 +35,7 @@ export default class MediaModal extends ImmutablePureComponent {
|
||||||
}
|
}
|
||||||
|
|
||||||
handlePrevClick = () => {
|
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) => {
|
handleKeyUp = (e) => {
|
||||||
|
|
Loading…
Reference in New Issue