From ee3a5274644a8e9a038670eaf0cac70c324ec188 Mon Sep 17 00:00:00 2001 From: Yifan Liu Date: Wed, 27 Apr 2022 16:38:33 +0800 Subject: [PATCH] misc: configurator: Open folder callback bugfix Open folder callback should append a path split after selecting working folder, same way as it did with default one. Tracked-On: #7418 Signed-off-by: Yifan Liu --- .../configurator/src/pages/Welcome/NewConfiguration.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/config_tools/configurator/src/pages/Welcome/NewConfiguration.vue b/misc/config_tools/configurator/src/pages/Welcome/NewConfiguration.vue index d593799eb..67250fd8a 100644 --- a/misc/config_tools/configurator/src/pages/Welcome/NewConfiguration.vue +++ b/misc/config_tools/configurator/src/pages/Welcome/NewConfiguration.vue @@ -92,7 +92,7 @@ export default { multiple: false }).then((folderPath) => { if (folderPath.length > 0) - this.WorkingFolder = folderPath + this.WorkingFolder = folderPath + window.systemInfo.pathSplit }) } }