fix expectCityList in config is not fill back

This commit is contained in:
geekgeekrun
2026-02-21 20:20:26 +08:00
parent ce651c8f7e
commit 0eb64a1c69
@@ -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 ?? []
}
})