replace 'concat' with [...a, ...b]

This commit is contained in:
Tsanie Lily 2023-04-19 16:37:53 +08:00
parent 92a360cbc2
commit cbdb2c7868

View File

@ -543,7 +543,7 @@ class CustomerCommunication {
enabled: item => !item.OptOut && !item.OptOut_BC,
onchanged: function () {
if (typeof option.onChanged === 'function') {
option.onChanged(This.#gridContact.source.concat(This.#gridWo.source));
option.onChanged([...This.#gridContact.source, ...This.#gridWo.source]);
}
}
}