mirror of
https://github.com/knadh/listmonk.git
synced 2025-01-21 13:48:24 +08:00
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 = () => {
|
fn = () => {
|
||||||
this.$api.blocklistSubscribersByQuery({
|
this.$api.blocklistSubscribersByQuery({
|
||||||
query: this.queryParams.queryExp,
|
query: this.queryParams.queryExp,
|
||||||
list_ids: [],
|
list_ids: [this.queryParams.listID],
|
||||||
}).then(() => this.querySubscribers());
|
}).then(() => this.querySubscribers());
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -409,7 +409,7 @@ export default Vue.extend({
|
||||||
fn = () => {
|
fn = () => {
|
||||||
this.$api.deleteSubscribersByQuery({
|
this.$api.deleteSubscribersByQuery({
|
||||||
query: this.queryParams.queryExp,
|
query: this.queryParams.queryExp,
|
||||||
list_ids: [],
|
list_ids: [this.queryParams.listID],
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
this.querySubscribers();
|
this.querySubscribers();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue