diff --git a/index.html b/index.html index dedf790..2e7ecb0 100644 --- a/index.html +++ b/index.html @@ -20,7 +20,7 @@ -
+ diff --git a/src/App.vue b/src/App.vue index 62e8bd6..c56d12c 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,9 +1,10 @@ diff --git a/src/components/Sections/EventList.vue b/src/components/Sections/EventList.vue index 53d8040..2c289fa 100644 --- a/src/components/Sections/EventList.vue +++ b/src/components/Sections/EventList.vue @@ -7,8 +7,8 @@ import EventListingComplete from '../listings/EventListing.vue'; - import Promo from '../listings/BlueskyLinks.vue'; - // import Promo from '../listings/Promo.vue'; + // import Promo from '../listings/BlueskyLinks.vue'; + import Promo from '../listings/Promo.vue'; import { useEventsStore } from '../../stores/EventsStore'; @@ -26,24 +26,33 @@ const store = useEventsStore(); store.fetchEvents(props.cal); - store.fetchPromo(); + store.fetchPromo(props.cal); const events = computed(() => { + if (store.events.length == 0){ + store.fetchEvents(props.cal); + } return store.events; }); const promo = computed(() => { + if (store.promo.length == 0){ + store.fetchPromo(props.cal); + } return store.promo; }); - - +Wait for it ...
+Or try refreshing, still workin' out a few bugs in the code.
+Though give it a moment ... please ...
+