dont think those are needed

This commit is contained in:
Robin Olsen
2026-02-23 14:36:51 +01:00
parent ac7c91f6d4
commit 4b3f4b00ab
2 changed files with 4 additions and 9 deletions

View File

@@ -3,8 +3,6 @@ package components
templ SearchForm(searchQuery string) {
<form
class="flex gap-2 items-center"
action="/"
method="get"
hx-get="/"
hx-target="main"
hx-swap="innerHTML"
@@ -16,11 +14,8 @@ templ SearchForm(searchQuery string) {
name="q"
value={ searchQuery }
placeholder="Search by title, description, or assignee..."
class="input input-sm input-bordered text-base-content w-48 md:w-64"
class="input input-md input-bordered text-base-content w-48 md:w-64"
aria-label="Search issues"
/>
<button type="submit" class="btn btn-sm btn-ghost">
Search
</button>
</form>
}