This commit is contained in:
2026-02-03 12:42:03 +09:00
parent e0446e35ff
commit 4c559b30fe
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -358,9 +358,9 @@ export default (({ post }: Props) => {
<>耕作者: </>
{post.uploadedUser
? (
<Link to={`/users/${ post.uploadedUser.id }`}>
<PrefetchLink to={`/users/${ post.uploadedUser.id }`}>
{post.uploadedUser.name || '名もなきニジラー'}
</Link>)
</PrefetchLink>)
: 'bot操作'}
</li>
*/}
+3 -3
View File
@@ -2,8 +2,8 @@ import axios from 'axios'
import toCamel from 'camelcase-keys'
import React, { useEffect, useState } from 'react'
import { Helmet } from 'react-helmet-async'
import { Link } from 'react-router-dom'
import PrefetchLink from '@/components/PrefetchLink'
import SectionTitle from '@/components/common/SectionTitle'
import MainArea from '@/components/layout/MainArea'
import { API_BASE_URL, SITE_TITLE } from '@/config'
@@ -78,9 +78,9 @@ export default () => {
{results.map (page => (
<tr key={page.id}>
<td className="p-2">
<Link to={`/wiki/${ encodeURIComponent (page.title) }`}>
<PrefetchLink to={`/wiki/${ encodeURIComponent (page.title) }`}>
{page.title}
</Link>
</PrefetchLink>
</td>
<td className="p-2 text-gray-100 text-sm">
{page.updatedAt}