mirror of
https://github.com/filebrowser/filebrowser.git
synced 2026-01-23 02:35:10 +00:00
fix: shell value must be joined by blank space
This commit is contained in:
parent
8d7522049c
commit
4403cd3572
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue