Skip to content

Commit 0ab312a

Browse files
committed
Fix listIds prop on sources
1 parent 5a76558 commit 0ab312a

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

components/acymailing/sources/new-subscribed-user/new-subscribed-user.mjs

+2-4
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,11 @@ export default {
1010
dedupe: "unique",
1111
props: {
1212
...common.props,
13-
listId: {
13+
listIds: {
1414
propDefinition: [
1515
common.props.acymailing,
1616
"listIds",
1717
],
18-
type: "integer",
19-
label: "List Id",
2018
},
2119
},
2220
methods: {
@@ -28,7 +26,7 @@ export default {
2826
},
2927
getParams() {
3028
return {
31-
"listIds[]": this.listId,
29+
"listIds[]": this.listIds,
3230
};
3331
},
3432
getFn() {

components/acymailing/sources/new-unsubscribed-user/new-unsubscribed-user.mjs

+2-4
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,11 @@ export default {
1010
dedupe: "unique",
1111
props: {
1212
...common.props,
13-
listId: {
13+
listIds: {
1414
propDefinition: [
1515
common.props.acymailing,
1616
"listIds",
1717
],
18-
type: "integer",
19-
label: "List Id",
2018
},
2119
},
2220
methods: {
@@ -26,7 +24,7 @@ export default {
2624
},
2725
getParams() {
2826
return {
29-
"listIds[]": this.listId,
27+
"listIds[]": this.listIds,
3028
};
3129
},
3230
getFn() {

0 commit comments

Comments
 (0)