Procházet zdrojové kódy

Fix incorrect [list_id] param in bulk subscriber deletion UI

Kailash Nadh před 3 roky
rodič
revize
1f4f4263a3
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      frontend/src/views/Subscribers.vue

+ 2 - 2
frontend/src/views/Subscribers.vue

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