Will now pull in agreements and accommations questions

This commit is contained in:
Scott Idem
2024-02-28 21:17:09 -05:00
parent 713fcb3c62
commit 2c7e7ca027
7 changed files with 209 additions and 34 deletions

View File

@@ -44,7 +44,8 @@ onMount(() => {
console.log('** Component Mounted: ** View Modal - Presenter Obj');
if ($slct.event_presenter_id && $ae_loc.href_url) {
$ae_loc.mod.events.presenter_link = `${$ae_loc.href_url}/load?ae_id=${$slct.event_presenter_id}`;
// $ae_loc.mod.events.presenter_link = `${$ae_loc.href_url}/load?ae_id=${$slct.event_presenter_id}`;
$ae_loc.mod.events.presenter_link = `${$ae_loc.site_domain}/events_speakers/load?ae_id=${$slct.event_presenter_id}`;
console.log('Speaker link:', $ae_loc.mod.events.presenter_link);
}
});
@@ -473,7 +474,7 @@ async function handle_update__event_presenter({
</header>
{#if $ae_loc.mod.events.presenter_link}
{#if $slct.event_presenter_id && $ae_loc.mod.events.presenter_link}
<div class="flex justify-end">
<button
class="btn variant-soft-secondary"

View File

@@ -0,0 +1 @@