Skip to content

Commit fd2955a

Browse files
authored
Merge branch 'master' into Add-help-hint-for-layer-specific-questions
2 parents 2680152 + cc3f302 commit fd2955a

4 files changed

Lines changed: 165 additions & 131 deletions

File tree

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v22
1+
24

components/StatusBanner.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
<script setup lang="ts">
2+
import { withBase } from 'vitepress'
3+
24
interface StatusBannerProps {
35
type: string
46
previewTitle: string
@@ -14,7 +16,7 @@ const isWarning = props.status.type === 'warning'
1416
<template>
1517
<div :class="[isWarning ? 'status-warning' : 'status-danger']">
1618
<a
17-
href="/page/status-page"
19+
:href="withBase('/page/status-page')"
1820
class="status-content"
1921
>
2022
<p>

0 commit comments

Comments
 (0)