From bcd77da53c82b5d4d202d61acb90674df11ece42 Mon Sep 17 00:00:00 2001 From: carlotacb Date: Wed, 17 Apr 2024 23:17:47 +0200 Subject: [PATCH 1/9] discovery working on it --- src/views/Travel.vue | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/views/Travel.vue b/src/views/Travel.vue index 40a88036..1c564f6d 100644 --- a/src/views/Travel.vue +++ b/src/views/Travel.vue @@ -4,10 +4,14 @@ import Panel from '@/components/Panel.vue' import PanelContainer from '@/components/PanelContainer.vue' import VueMarkdownIt from 'vue3-markdown-it' import { RouterLink, useRoute } from 'vue-router' -import { computed } from 'vue' +import { computed, ref } from 'vue' import IconLabel from '@/components/IconLabel.vue' import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome' import { discovers } from '@/data/discover' +import config from '@/config' +import MoreInformationSoon from '@/components/MoreInformationSoon.vue' + +const workingDiscovery = ref(config.workingDiscovery) const route = useRoute() @@ -87,7 +91,12 @@ const currentView = computed<'travel' | 'discover'>(() => { :key="discover.title" :title="discover.title" > - + + From 8ad58631663032057c3b05826bedfdda2fff250c Mon Sep 17 00:00:00 2001 From: carlotacb Date: Wed, 17 Apr 2024 23:18:23 +0200 Subject: [PATCH 2/9] fix button not beeing disabled when selecting judging --- src/views/Rules.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/views/Rules.vue b/src/views/Rules.vue index e0f5cc8c..02a2f09f 100644 --- a/src/views/Rules.vue +++ b/src/views/Rules.vue @@ -42,6 +42,7 @@ const currentViewRules = computed<'judging' | 'hRules'>(() => { params: { rulesId: 'judging' }, }" class="button" + :class="{ 'button--disabled': currentViewRules === 'judging' }" > Judging From eb9c616bf12a977abe5dde6345adc634ac1e9181 Mon Sep 17 00:00:00 2001 From: carlotacb Date: Wed, 17 Apr 2024 23:18:41 +0200 Subject: [PATCH 3/9] remove tshirt section in mentors --- src/views/Mentors.vue | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/views/Mentors.vue b/src/views/Mentors.vue index 3f10a808..116155e3 100644 --- a/src/views/Mentors.vue +++ b/src/views/Mentors.vue @@ -1,5 +1,4 @@