Fixed: Remove selected in queue

Closes #2052
This commit is contained in:
Mark McDowall 2021-03-07 12:24:06 -08:00 committed by Qstick
parent d0c92fabfe
commit 1c154956ac
1 changed files with 3 additions and 2 deletions

View File

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