Browse Source

'frontend/src/pages/posts/PostHistoryPage.tsx' を更新

feature/290
みてるぞ 1 week ago
parent
commit
8b6f20bae3
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      frontend/src/pages/posts/PostHistoryPage.tsx

+ 3
- 1
frontend/src/pages/posts/PostHistoryPage.tsx View File

@@ -92,7 +92,9 @@ export default (() => {
</PrefetchLink>
</td>)}
<td className="p-2">
<TagLink tag={change.tag} withWiki={false} withCount={false}/>
{change.tag
? <TagLink tag={change.tag} withWiki={false} withCount={false}/>
: '(マスタ削除済のタグ) '
{`を${ change.changeType === 'add' ? '記載' : '消除' }`}
</td>
<td className="p-2">


Loading…
Cancel
Save