みてるぞ 4 days ago
parent
commit
884b58607b
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      frontend/src/pages/tags/NicoTagListPage.tsx

+ 4
- 1
frontend/src/pages/tags/NicoTagListPage.tsx View File

@@ -124,7 +124,10 @@ export default ({ user }: Props) => {
</td>
{memberFlg && (
<td>
<a href="#" onClick={() => handleEdit (tag.id)}>
<a href="#" onClick={ev => {
ev.preventDefault ()
handleEdit (tag.id)
}}>
{editing[tag.id]
? <span className="text-red-400">更新</span>
: <span>編輯</span>}


Loading…
Cancel
Save