fix(command): trim spaces

zio/stable
三咲智子 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

@ -60,7 +60,7 @@ const searchResult = $computed<QueryResult>(() => {
})
const result = $computed<QueryResult>(() => commandMode
? registry.query(scopes.map(s => s.id).join('.'), input.slice(1))
? registry.query(scopes.map(s => s.id).join('.'), input.slice(1).trim())
: searchResult,
)