From 8a0f919a4205a34bebefcc02fcd49eff45fdcd46 Mon Sep 17 00:00:00 2001 From: Lei OT Date: Wed, 7 May 2025 11:05:13 +0800 Subject: [PATCH] fix: --- src/stores/CustomerServices.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/CustomerServices.js b/src/stores/CustomerServices.js index ad4ab8d..c932353 100644 --- a/src/stores/CustomerServices.js +++ b/src/stores/CustomerServices.js @@ -729,7 +729,7 @@ class CustomerServices { this.startDateDiffString = obj.DateDiff1; this.endDateDiffString = obj.DateDiff2; this.selectedCountry = obj.countryArea; - this.selectedTeam = obj.DepartmentList.replace('ALL', ''); + this.selectedTeam = (obj.DepartmentList || '').replace('ALL', ''); this.selectedOrderStatus = obj.orderStatus; }