Fix incorrect [list_id] param in bulk subscriber deletion UI

This commit is contained in:
Kailash Nadh 2021-09-07 17:15:48 +05:30
parent 68369a8f13
commit 1f4f4263a3

View file

@ -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();