feat: client-side session search by name, date, and notes (2.4.0)

Add a search bar to the sessions list panel that filters rows in real time.
Searches display label, ISO date, month/year, and session notes. The count
badge updates to show matching/total; a no-results message appears when the
query has no matches.
This commit is contained in:
SowinskiBraeden committed 2026-06-26 21:30:22 -07:00
1 parent a5cb488b91
commit 0e34600714
3 files changed
+57 -3

No files matched your search

+1 -1
View File
@@ -9,7 +9,7 @@ DATA_PATH = BASE_DIR / "data" / "entries.csv"
DEFAULT_DATABASE_URL = f"sqlite:///{BASE_DIR / 'data' / 'boker-dev.sqlite3'}"
ELIGIBLE_MIN_SESSIONS = 3
APP_VERSION = "2.3.1"
APP_VERSION = "2.4.0"
def load_local_env(env_path: Path) -> None: