Bug fix for event file table list. Links not showing.

This commit is contained in:
Scott Idem
2025-07-23 16:31:06 -04:00
parent 4861ae0499
commit 9d72337d43

View File

@@ -297,7 +297,7 @@ let lq_kv__event_file_obj_li = liveQuery(
</td>
{#if show_location_fields}
<td class="px-4 py-2 lg:text-xs">
{#if event_file_obj?.event_location_id_random}
{#if event_file_obj?.event_location_id}
<!-- <span class="fas fa-map-marker-alt"></span> -->
{event_file_obj?.event_location_name}
{:else}
@@ -310,7 +310,7 @@ let lq_kv__event_file_obj_li = liveQuery(
<td class="px-4 py-2 lg:text-xs">
<span class="fas fa-chalkboard-teacher"></span>
<a
href="/events/{event_file_obj?.event_id}/session/{event_file_obj?.event_session_id_random}"
href="/events/{event_file_obj?.event_id}/session/{event_file_obj?.event_session_id}"
class="text-blue-500 underline hover:text-blue-800"
>
{event_file_obj?.event_session_name}
@@ -320,14 +320,14 @@ let lq_kv__event_file_obj_li = liveQuery(
{/if}
{#if show_presentation_fields}
<td class="px-4 py-2 lg:text-xs">
{#if event_file_obj?.event_presentation_id_random}
{#if event_file_obj?.event_presentation_id}
{event_file_obj?.event_presentation_name}
{:else}
{@html ae_snip.html__not_set}
{/if}
</td>
<td class="px-4 py-2">
{#if event_file_obj?.event_presentation_id_random}
{#if event_file_obj?.event_presentation_id}
{ae_util.iso_datetime_formatter(event_file_obj?.event_presentation_start_datetime, 'time_12_short')}
{:else}
{@html ae_snip.html__not_set}