Fix issue with pack query sidebar not depopulating when query is removed (#262)

This commit is contained in:
Gabe Hernandez 2021-02-03 11:32:17 +00:00 committed by GitHub
parent 22d9205d35
commit 0367cf6a67
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -194,6 +194,7 @@ export class EditPackPage extends Component {
return Promise.all(promises)
.then(() => {
this.setState({ selectedScheduledQuery: null, selectedQuery: null });
dispatch(renderFlash('success', 'Scheduled queries removed'));
});
}