From cbdb2c7868e01a19d157ce668ba84a03f1857a5e Mon Sep 17 00:00:00 2001 From: Tsanie Lily Date: Wed, 19 Apr 2023 16:37:53 +0800 Subject: [PATCH] replace 'concat' with [...a, ...b] --- lib/app/communications/customer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/app/communications/customer.js b/lib/app/communications/customer.js index 4b5994e..2640c93 100644 --- a/lib/app/communications/customer.js +++ b/lib/app/communications/customer.js @@ -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]); } } }