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 <yifan1.liu@intel.com>
This commit is contained in:
Yifan Liu 2022-04-27 16:38:33 +08:00 committed by acrnsi-robot
parent 8bdbedd6cf
commit ee3a527464

View File

@ -92,7 +92,7 @@ export default {
multiple: false
}).then((folderPath) => {
if (folderPath.length > 0)
this.WorkingFolder = folderPath
this.WorkingFolder = folderPath + window.systemInfo.pathSplit
})
}
}