mirror of
https://github.com/knadh/listmonk.git
synced 2025-10-13 16:56:15 +08:00
Fix incorrect [list_id] param in bulk subscriber deletion UI
This commit is contained in:
parent
68369a8f13
commit
1f4f4263a3
1 changed files with 2 additions and 2 deletions
|
@ -381,7 +381,7 @@ export default Vue.extend({
|
||||||
fn = () => {
|
fn = () => {
|
||||||
this.$api.blocklistSubscribersByQuery({
|
this.$api.blocklistSubscribersByQuery({
|
||||||
query: this.queryParams.queryExp,
|
query: this.queryParams.queryExp,
|
||||||
list_ids: [this.queryParams.listID],
|
list_ids: this.queryParams.listID ? [this.queryParams.listID] : null,
|
||||||
}).then(() => this.querySubscribers());
|
}).then(() => this.querySubscribers());
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -416,7 +416,7 @@ export default Vue.extend({
|
||||||
fn = () => {
|
fn = () => {
|
||||||
this.$api.deleteSubscribersByQuery({
|
this.$api.deleteSubscribersByQuery({
|
||||||
query: this.queryParams.queryExp,
|
query: this.queryParams.queryExp,
|
||||||
list_ids: [this.queryParams.listID],
|
list_ids: this.queryParams.listID ? [this.queryParams.listID] : null,
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
this.querySubscribers();
|
this.querySubscribers();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue