Fixed: Remove selected in queue

Closes #2052
pull/2154/head
Mark McDowall 4 years ago committed by Qstick
parent d0c92fabfe
commit 1c154956ac

@ -113,8 +113,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