Fixed: Remove selected in queue

(cherry picked from commit 4ed5fefcc6e362cb5c62ec639ee64571c97f9b5b)
pull/1145/head
Mark McDowall 4 years ago committed by ta264
parent 1a3bb381b1
commit ca7ba125d2

@ -114,8 +114,9 @@ class Queue extends Component {
}
onRemoveSelectedPress = () => {
this._shouldBlockRefresh = true;
this.setState({ isConfirmRemoveModalOpen: true });
this.setState({ isConfirmRemoveModalOpen: true }, () => {
this._shouldBlockRefresh = true;
});
}
onRemoveSelectedConfirmed = (payload) => {

Loading…
Cancel
Save