Package updates and trying to fix a reversion with reactivity within the same page file. The Dexie liveQuery does not seem to refresh correctly when on the same page. It does show the update on child components. Even if nearly identical.
This commit is contained in:
@@ -96,7 +96,7 @@ onMount(() => {
|
||||
$idaa_sess.recovery_meetings.show__modal_view = true;
|
||||
$idaa_sess.recovery_meetings.show__modal_edit = false;
|
||||
}}
|
||||
class="btn btn-md variant-ghost-primary hover:variant-filled-primary transition"
|
||||
class="novi_btn btn btn-primary btn-md variant-ghost-primary hover:variant-filled-primary transition"
|
||||
title={`Open to see details: ${idaa_event_obj?.name}`}
|
||||
>
|
||||
<span class="fas fa-envelope-open m-1"></span>
|
||||
@@ -121,7 +121,7 @@ onMount(() => {
|
||||
$idaa_sess.recovery_meetings.show__modal_view = false;
|
||||
$idaa_sess.recovery_meetings.show__modal_edit = true;
|
||||
}}
|
||||
class="btn btn-sm variant-ghost-warning hover:variant-filled-warning transition"
|
||||
class="novi_btn btn btn-warning btn-sm variant-ghost-warning hover:variant-filled-warning transition"
|
||||
title={`Edit meeting: ${idaa_event_obj?.name}`}
|
||||
>
|
||||
<span class="fas fa-edit m-1"></span>
|
||||
|
||||
@@ -214,7 +214,7 @@ if ($idaa_loc.recovery_meetings.qry__fulltext_str && $idaa_loc.recovery_meetings
|
||||
<div class="ae_group flex flex-row gap-2 w-full items-center justify-center">
|
||||
<button
|
||||
type="button"
|
||||
class="btn btn-sm variant-ghost-warning hover:variant-filled-warning transition-all"
|
||||
class="novi_btn btn btn-sm variant-ghost-warning hover:variant-filled-warning transition-all"
|
||||
on:click={() => {
|
||||
$idaa_loc.recovery_meetings.qry__fulltext_str = '';
|
||||
// $idaa_trig.event_li_qry = true;
|
||||
@@ -239,11 +239,11 @@ if ($idaa_loc.recovery_meetings.qry__fulltext_str && $idaa_loc.recovery_meetings
|
||||
}
|
||||
}
|
||||
style="width: 50%;"
|
||||
class="bs-input input text-sm hover:text-2xl font-bold font-mono w-80 transition-all"
|
||||
class="input text-sm hover:text-2xl font-bold font-mono w-80 transition-all"
|
||||
>
|
||||
<button
|
||||
type="submit"
|
||||
class="btn btn-lg variant-ghost-success hover:variant-filled-success text-2xl font-bold w-48 transition-all"
|
||||
class="novi_btn btn btn-lg variant-ghost-success hover:variant-filled-success text-2xl font-bold w-48 transition-all"
|
||||
title="Search for meetings by day of week, location, contacts, etc."
|
||||
>
|
||||
<!-- <span class="fas fa-search m-1"></span> -->
|
||||
@@ -518,7 +518,7 @@ if ($idaa_loc.recovery_meetings.qry__fulltext_str && $idaa_loc.recovery_meetings
|
||||
$idaa_sess.recovery_meetings.show__modal_view = false;
|
||||
$idaa_sess.recovery_meetings.show__modal_edit = true;
|
||||
}}
|
||||
class="btn_new_recovery_meeting btn btn-sm variant-ghost-warning hover:variant-filled-warning transition text-xs"
|
||||
class="novi_btn btn btn-warning btn-sm variant-ghost-warning hover:variant-filled-warning transition text-xs"
|
||||
disabled={!$ae_loc.authenticated_access}
|
||||
>
|
||||
<span class="fas fa-plus m-1"></span> Create New Meeting
|
||||
|
||||
Reference in New Issue
Block a user