Skip to content

Commit 94b5dd2

Browse files
committed
Try and fix Get Started nav not working
1 parent ef99f10 commit 94b5dd2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

layouts/component.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<gvd-page-wrapper>
33
<div class="govuk-grid-row">
4-
<div class="govuk-grid-column-one-quarter" v-if="isDesktop">
4+
<div class="govuk-grid-column-one-quarter" :hidden="!isDesktop">
55
<GvdSubNav>
66
<ContentNavigation v-slot="{ navigation }" :query="componentsQuery">
77
<GvdSubNavSection>

layouts/getstarted.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<template>
33
<gvd-page-wrapper>
44
<div class="govuk-grid-row">
5-
<div class="govuk-grid-column-one-quarter" v-if="isDesktop">
5+
<div class="govuk-grid-column-one-quarter" :hidden="!isDesktop">
66
<GvdSubNav>
77
<ContentNavigation v-slot="{ navigation }" :query="getStartedQuery">
88
<GvdSubNavSection>

0 commit comments

Comments
 (0)