このコミットが含まれているのは:
2025-08-03 19:08:25 +09:00
コミット cc6d50cf17
3個のファイルの変更23行の追加7行の削除
+1 -1
ファイルの表示
@@ -131,7 +131,7 @@ export default () => {
</Tab>
{tags.length === 1 && (
<Tab name="Wiki">
<WikiBody body={wikiPage?.body} title={tags[0]} />
<WikiBody title={tags[0]} body={wikiPage?.body} />
<div className="my-2">
<Link to={`/wiki/${ encodeURIComponent (tags[0]) }`}>
Wiki
+3 -2
ファイルの表示
@@ -60,6 +60,7 @@ export default () => {
}
}) ()
setPosts ([])
void (async () => {
try
{
@@ -73,7 +74,7 @@ export default () => {
}
catch
{
setPosts ([])
;
}
}) ()
@@ -123,7 +124,7 @@ export default () => {
<div className="prose mx-auto p-4">
{wikiPage === undefined
? 'Loading...'
: <WikiBody body={wikiPage?.body} title={title} />}
: <WikiBody title={title} body={wikiPage?.body} />}
</div>
{(!(version) && posts.length > 0) && (