summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2020-12-29 16:45:35 +0900
committersyuilo <syuilotan@yahoo.co.jp>2020-12-29 16:45:35 +0900
commitef94236e7f96aa634ddcf9add241925709a71eb9 (patch)
tree8d8c47190e44719869f3c89dfbb676da12cf5b77 /src
parent12.65.0 (diff)
downloadmisskey-ef94236e7f96aa634ddcf9add241925709a71eb9.tar.gz
misskey-ef94236e7f96aa634ddcf9add241925709a71eb9.tar.bz2
misskey-ef94236e7f96aa634ddcf9add241925709a71eb9.zip
Fix doc link
Diffstat (limited to 'src')
-rw-r--r--src/client/pages/doc.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/pages/doc.vue b/src/client/pages/doc.vue
index 8235d5c1aa..3379a5fe68 100644
--- a/src/client/pages/doc.vue
+++ b/src/client/pages/doc.vue
@@ -3,7 +3,7 @@
<div class="title">{{ title }}</div>
<div class="body" v-html="body"></div>
<div class="footer">
- <MkLink :url="`https://github.com/syuilo/misskey/blob/master/src/docs/${doc}.ja-JP.md`" class="at">{{ $ts.docSource }}</MkLink>
+ <MkLink :url="`https://github.com/syuilo/misskey/blob/master/src/docs/${lang}/${doc}.md`" class="at">{{ $ts.docSource }}</MkLink>
</div>
</div>
</template>
@@ -45,6 +45,7 @@ export default defineComponent({
title: null,
body: null,
markdown: null,
+ lang,
}
},