Fixed: Remove selected in queue

(cherry picked from commit 4ed5fefcc6e362cb5c62ec639ee64571c97f9b5b)
This commit is contained in:
Mark McDowall 2021-03-07 12:24:06 -08:00 committed by Qstick
parent 024000275d
commit 59f8a4d2e2
1 changed files with 3 additions and 2 deletions

View File

@ -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) => {