mirror of
https://github.com/knadh/listmonk.git
synced 2024-11-10 09:02:36 +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 = () => {
|
||||
this.$api.blocklistSubscribersByQuery({
|
||||
query: this.queryParams.queryExp,
|
||||
list_ids: [this.queryParams.listID],
|
||||
list_ids: this.queryParams.listID ? [this.queryParams.listID] : null,
|
||||
}).then(() => this.querySubscribers());
|
||||
};
|
||||
}
|
||||
|
@ -416,7 +416,7 @@ export default Vue.extend({
|
|||
fn = () => {
|
||||
this.$api.deleteSubscribersByQuery({
|
||||
query: this.queryParams.queryExp,
|
||||
list_ids: [this.queryParams.listID],
|
||||
list_ids: this.queryParams.listID ? [this.queryParams.listID] : null,
|
||||
}).then(() => {
|
||||
this.querySubscribers();
|
||||
|
||||
|
|
Loading…
Reference in a new issue