Trying to make this LiveQuery work.

This commit is contained in:
Scott Idem
2024-08-19 17:56:32 -04:00
parent 4871464adf
commit c61d3a4dca
3 changed files with 139 additions and 55 deletions

View File

@@ -793,12 +793,20 @@ $: if ($lq__event_session_obj) {
<!-- Presentations in the session -->
<section>
{#await $lq__event_presentation_obj_li}
Loading....
{:then event_presentation_obj_li}
{#if $lq__event_presentation_obj_li && $lq__event_presentation_obj_li?.length > 0}
<!-- {$lq__event_presentation_obj_li?.length} Presentations -->
<Comp_event_presentation_obj_li
lq__event_obj={lq__event_obj}
lq__event_presentation_obj_li={lq__event_presentation_obj_li}
>
<!-- event_presentation_id_random_li={[]} -->
</Comp_event_presentation_obj_li>
{/if}
{/await}
<Comp_event_presentation_obj_li
lq__event_obj={lq__event_obj}
lq__event_presentation_obj_li={lq__event_presentation_obj_li}
>
</Comp_event_presentation_obj_li>
</section>