From 0eb64a1c69bdbe83eb2a4d6382f67feee1c34905 Mon Sep 17 00:00:00 2001 From: geekgeekrun Date: Sat, 21 Feb 2026 20:20:26 +0800 Subject: [PATCH] fix expectCityList in config is not fill back --- .../src/page/MainLayout/GeekAutoStartChatWithBoss/index.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/ui/src/renderer/src/page/MainLayout/GeekAutoStartChatWithBoss/index.vue b/packages/ui/src/renderer/src/page/MainLayout/GeekAutoStartChatWithBoss/index.vue index 706d4a0..ce69550 100644 --- a/packages/ui/src/renderer/src/page/MainLayout/GeekAutoStartChatWithBoss/index.vue +++ b/packages/ui/src/renderer/src/page/MainLayout/GeekAutoStartChatWithBoss/index.vue @@ -1970,7 +1970,8 @@ electron.ipcRenderer.invoke('fetch-config-file-content').then((res) => { res.config['common-job-condition-config.json']?.expectSalaryCalculateWay ?? SalaryCalculateWay.MONTH_SALARY, expectSalaryLow: res.config['common-job-condition-config.json']?.expectSalaryLow ?? null, - expectSalaryHigh: res.config['common-job-condition-config.json']?.expectSalaryHigh ?? null + expectSalaryHigh: res.config['common-job-condition-config.json']?.expectSalaryHigh ?? null, + expectCityList: res.config['common-job-condition-config.json']?.expectCityList ?? [] } })