diff --git a/src/routes/events/ae_comp__event_file_obj_tbl.svelte b/src/routes/events/ae_comp__event_file_obj_tbl.svelte
index b48c226d..04fc6a67 100644
--- a/src/routes/events/ae_comp__event_file_obj_tbl.svelte
+++ b/src/routes/events/ae_comp__event_file_obj_tbl.svelte
@@ -297,7 +297,7 @@ let lq_kv__event_file_obj_li = liveQuery(
{#if show_location_fields}
- {#if event_file_obj?.event_location_id_random}
+ {#if event_file_obj?.event_location_id}
{event_file_obj?.event_location_name}
{:else}
@@ -310,7 +310,7 @@ let lq_kv__event_file_obj_li = liveQuery(
|
{event_file_obj?.event_session_name}
@@ -320,14 +320,14 @@ let lq_kv__event_file_obj_li = liveQuery(
{/if}
{#if show_presentation_fields}
|
- {#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}
|
- {#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}
|