Skip to content

Commit ef99f10

Browse files
committed
Fix navigation error and input typo
1 parent fd3da77 commit ef99f10

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

content/2.components/text-input.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const eventName = ref('')
1515
</script>
1616
1717
<template>
18-
<gv-input label="What is the name of the event?" v-model="eventName">
18+
<gv-input label="What is the name of the event?" v-model="eventName" />
1919
<gv-inset-text v-if="eventName" aria-live="polite">
2020
'{{ eventName }}' will be printed on the poster for your event.
2121
</gv-inset-text>

layouts/getstarted.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<GvdSubNav>
77
<ContentNavigation v-slot="{ navigation }" :query="getStartedQuery">
88
<GvdSubNavSection>
9-
<GvdSubNavItem v-for="link in navigation[0].children" :key="link._path" :to="link._path">
9+
<GvdSubNavItem v-if="navigation && navigation.length > 0" v-for="link in navigation[0].children" :key="link._path" :to="link._path">
1010
{{ link.title }}
1111
</GvdSubNavItem>
1212
</GvdSubNavSection>

0 commit comments

Comments
 (0)