Done for the night I guess.

This commit is contained in:
Scott Idem
2024-03-27 20:15:30 -04:00
parent b336f18512
commit 7cc23077f3
8 changed files with 16 additions and 14 deletions

View File

@@ -8,9 +8,9 @@ import { ae_loc, ae_sess, ae_api, slct, slct_trigger } from '$lib/ae_stores';
// Quickly save the data passed from the parent(s) to the Svelte stores, localStorage, and other.
// $slct.account_id = data.account_id;
console.log(`$slct.account_id = `, $slct.account_id);
// console.log(`$slct.account_id = `, $slct.account_id);
let ae_acct = data[$slct.account_id];
console.log(`ae_acct = `, ae_acct);
// console.log(`ae_acct = `, ae_acct);
// $ae_loc = data.ae_loc;
$ae_loc.mod.events.event_id = data.ae_slct.event_id;
@@ -27,7 +27,7 @@ if (data.ae_ds) {
}
onMount(() => {
console.log(`$slct.event_id = `, $slct.event_id);
// console.log(`$slct.event_id = `, $slct.event_id);
if (data.url.searchParams.get('event_id')) {
$slct.event_id = data.url.searchParams.get('event_id');
$ae_loc.mod.events.event_id = data.url.searchParams.get('event_id');

View File

@@ -1,7 +1,7 @@
<script lang="ts">
export let data: any;
console.log(`ae_ Svelte Events Speakers +page data:`, data);
// console.log(`ae_ Svelte Events Speakers +page data:`, data);
import { onMount } from 'svelte';