fix(command): trim spaces

This commit is contained in:
三咲智子 2023-01-10 15:24:14 +08:00
parent 8fb9739f69
commit b4cda4338f
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E
2 changed files with 4 additions and 4 deletions

View file

@ -119,7 +119,7 @@ export function closePreviewHelp() {
}
export function openCommandPanel(isCommandMode = false) {
commandPanelInput.value = isCommandMode ? '>' : ''
commandPanelInput.value = isCommandMode ? '> ' : ''
isCommandPanelOpen.value = true
}