fix: shell value must be joined by blank space

pull/5252/head
Henrique Dias 2025-06-30 16:21:36 +02:00
parent 8d7522049c
commit 4403cd3572
1 changed files with 1 additions and 1 deletions

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;