Fix issue where redirecting to endpoints page would only show table

This commit is contained in:
Peter Stockings
2024-11-09 19:20:06 +11:00
parent 120a94ff45
commit 0b7b804d62
2 changed files with 21 additions and 17 deletions

View File

@@ -11,7 +11,7 @@
<!-- Optional: Search or Filter functionality with HTMX -->
<div class="mb-4">
<input type="text" id="search" name="search" placeholder="Search endpoints..."
class="w-full p-2 border border-gray-300 rounded" hx-get="/endpoints"
class="w-full p-2 border border-gray-300 rounded" hx-get="{{ url_for('search_endpoints') }}"
hx-trigger="keyup changed delay:500ms, search" hx-push-url="true" hx-target="#endpoints-table"
hx-include="[name='search']">
</div>