From b31b71756bdffd7641908db7809a2570643e1d57 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Tue, 24 Jun 2025 12:44:04 +0300 Subject: [PATCH] fix time zone list in import --- client/src/views/import/step1.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/views/import/step1.js b/client/src/views/import/step1.js index a56e170401..664eb28bf3 100644 --- a/client/src/views/import/step1.js +++ b/client/src/views/import/step1.js @@ -315,7 +315,7 @@ class Step1ImportView extends View { name: 'timezone', mode: 'edit', params: { - options: this.getMetadata().get(['entityDefs', 'Settings', 'fields', 'timeZone', 'options']), + options: Espo.Utils.clone(this.getHelper().getAppParam('timeZoneList')) || [], }, });