Improved search, linking results to scenes page, updating on input clear.

This commit is contained in:
2026-01-05 21:40:03 +01:00
parent 68f15d4f74
commit 77b9acea32
6 changed files with 8 additions and 6 deletions

View File

@@ -8,7 +8,7 @@
type="search"
placeholder="Search actors"
class="input search"
@keydown.enter="search"
@search="search"
>
<Icon

View File

@@ -15,7 +15,7 @@
type="search"
placeholder="Search scenes"
class="search input"
@keydown.enter="search"
@search="search"
>
<Icon

View File

@@ -66,9 +66,10 @@ function toggleTag(tag, isChecked) {
<style scoped>
.dialog-body {
padding: 1rem;
width: 30rem;
max-width: 100%;
box-sizing: border-box;
padding: 1rem;
overflow-y: auto;
}