replace 'concat' with [...a, ...b]
This commit is contained in:
parent
92a360cbc2
commit
cbdb2c7868
@ -543,7 +543,7 @@ class CustomerCommunication {
|
|||||||
enabled: item => !item.OptOut && !item.OptOut_BC,
|
enabled: item => !item.OptOut && !item.OptOut_BC,
|
||||||
onchanged: function () {
|
onchanged: function () {
|
||||||
if (typeof option.onChanged === 'function') {
|
if (typeof option.onChanged === 'function') {
|
||||||
option.onChanged(This.#gridContact.source.concat(This.#gridWo.source));
|
option.onChanged([...This.#gridContact.source, ...This.#gridWo.source]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user