From 01dbcfccc68ff333119da0b33c40dc0dcd165d9f Mon Sep 17 00:00:00 2001 From: Felix Kling Date: Tue, 21 May 2024 23:21:08 +0200 Subject: [PATCH] svelte: Add tailling space to default repo search input (#62832) The input is missing a trailing space. --- .../src/routes/[...repo=reporev]/RepoSearchInput.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/web-sveltekit/src/routes/[...repo=reporev]/RepoSearchInput.svelte b/client/web-sveltekit/src/routes/[...repo=reporev]/RepoSearchInput.svelte index d0b393658d4..4d10d3bfc17 100644 --- a/client/web-sveltekit/src/routes/[...repo=reporev]/RepoSearchInput.svelte +++ b/client/web-sveltekit/src/routes/[...repo=reporev]/RepoSearchInput.svelte @@ -37,7 +37,7 @@ ) } - $: query = `repo:${repositoryInsertText({ repository: repoName })}${revision ? `@${revision}` : ''}` + $: query = `repo:${repositoryInsertText({ repository: repoName })}${revision ? `@${revision}` : ''} ` $: queryState = queryStateStore({ query }, $settings) $: if ($open) { // @melt-ui automatically focuses the search input but that positions the cursor at the