Skip to content

Commit 40926e2

Browse files
committed
fix(calendar): use type="a" for external documentation link
type="router-link" with external href causes Vue Router error. External links should use type="a". Fixes #1800
1 parent 2e45eb5 commit 40926e2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/web-runtime/src/pages/account/accountCalendar.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
no-hover
1919
class="ml-1"
2020
appearance="raw"
21-
type="router-link"
21+
type="a"
22+
target="_blank"
2223
href="https://docs.opencloud.eu/docs/admin/configuration/radicale-integration/"
2324
>
2425
<span v-text="$gettext('here')" />

0 commit comments

Comments
 (0)