Fix listID not being passed in bulk sub deletion. Closes #384
This commit is contained in:
parent
baca95e4eb
commit
bbffbbc5f3
1 changed files with 2 additions and 2 deletions
|
@ -374,7 +374,7 @@ export default Vue.extend({
|
|||
fn = () => {
|
||||
this.$api.blocklistSubscribersByQuery({
|
||||
query: this.queryParams.queryExp,
|
||||
list_ids: [],
|
||||
list_ids: [this.queryParams.listID],
|
||||
}).then(() => this.querySubscribers());
|
||||
};
|
||||
}
|
||||
|
@ -409,7 +409,7 @@ export default Vue.extend({
|
|||
fn = () => {
|
||||
this.$api.deleteSubscribersByQuery({
|
||||
query: this.queryParams.queryExp,
|
||||
list_ids: [],
|
||||
list_ids: [this.queryParams.listID],
|
||||
}).then(() => {
|
||||
this.querySubscribers();
|
||||
|
||||
|
|
Loading…
Reference in a new issue