fix: shell value must be joined by blank space

This commit is contained in:
Henrique Dias 2025-06-30 16:21:36 +02:00
parent 8d7522049c
commit 4403cd3572

View File

@ -401,7 +401,7 @@ onMounted(async () => {
originalSettings.value = original;
settings.value = newSettings;
shellValue.value = newSettings.shell.join("\n");
shellValue.value = newSettings.shell.join(" ");
} catch (err) {
if (err instanceof Error) {
error.value = err;