Bug fixes and clean up of Dexie DB related

This commit is contained in:
Scott Idem
2024-06-19 16:27:16 -04:00
parent 06add80718
commit 8c52722408
5 changed files with 216 additions and 32 deletions

View File

@@ -222,7 +222,7 @@ $: if ($events_trigger == 'load__event_session_obj_li' && $events_slct.event_id)
bind:value={$events_sess.pres_mgmt.fulltext_search_qry_str}
class="input text-1xl hover:text-2xl font-bold font-mono w-80 transition-all"
on:keyup={() => {
if ($events_sess.pres_mgmt.fulltext_search_qry_str.length >= 3) {
if ($events_sess.pres_mgmt?.fulltext_search_qry_str && $events_sess.pres_mgmt.fulltext_search_qry_str.length >= 3) {
$events_trigger = 'load__event_session_obj_li';
}
}}