diff --git a/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li.svelte b/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li.svelte index 860e615b..8e25fbd4 100644 --- a/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li.svelte +++ b/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li.svelte @@ -44,6 +44,8 @@ onMount(() => { class="container recovery_meeting ae_object event_obj border border-1 rounded p-2 mb-2" class:meeting_physical={idaa_event_obj?.physical} class:meeting_virtual={idaa_event_obj?.virtual} + class:dim={idaa_event_obj?.hide} + class:bg-warning-100={!idaa_event_obj?.enable} >
@@ -254,7 +256,7 @@ onMount(() => {
Required: No primary contact information was found!
{/if} {#if !idaa_event_obj?.external_person_id} -
Warning: Not linked to a Novi record!
+
Warning: Not linked to a Novi record!
{/if} {/if} diff --git a/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_qry.svelte b/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_qry.svelte index 849fc5d8..a0a3b2a2 100644 --- a/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_qry.svelte +++ b/src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_qry.svelte @@ -62,7 +62,7 @@ async function handle_qry__event( 'qry__hidden': $idaa_loc.recovery_meetings.qry__hidden ?? 'not_hidden', 'qry__limit': $idaa_loc.recovery_meetings.qry__limit ?? 35, }, - try_cache = false, + try_cache = true, log_lvl = 1, }: { ft_qry_str?: string, @@ -387,21 +387,22 @@ async function handle_qry__event( - {#if $ae_loc.trusted_access && !$idaa_loc.recovery_meetings.hidden} + {#if $ae_loc.trusted_access && !$idaa_loc.recovery_meetings.qry__hidden || $idaa_loc.recovery_meetings.qry__hidden == 'not_hidden'} - {:else if $ae_loc.trusted_access && $idaa_loc.recovery_meetings.hidden == 'all'} + {:else if $ae_loc.trusted_access && $idaa_loc.recovery_meetings.qry__hidden != 'not_hidden'} {/if} - {#if $ae_loc.administrator_access && !$idaa_loc.recovery_meetings.enabled} + {#if $ae_loc.administrator_access && !$idaa_loc.recovery_meetings.qry__enabled || $idaa_loc.recovery_meetings.qry__enabled == 'enabled'} - {:else if $ae_loc.administrator_access && $idaa_loc.recovery_meetings.enabled == 'all'} + {:else if $ae_loc.administrator_access && $idaa_loc.recovery_meetings.qry__enabled != 'enabled'}