みてるぞ 1 day ago
parent
commit
fed0f314e2
1 changed files with 15 additions and 0 deletions
  1. +15
    -0
      frontend/src/pages/threads/ThreadDetailPage.tsx

+ 15
- 0
frontend/src/pages/threads/ThreadDetailPage.tsx View File

@@ -146,6 +146,21 @@ export default () => {


return ( return (
<> <>
<div className="bg-white dark:bg-gray-800 p-3 m-4
border border-gray-400 rounded-xl
mb-8">
<div className="px-2 py-1 text-bold">
{thread?.name}
</div>
{thread?.description && (
<div className="px-4 my-2">
{thread.description.replaceAll ('\r\n', '\n')
.replaceAll ('\r', '\n')
.split ('\n')
.map ((l, i) => <p key={i}>{l}</p>)}
</div>)}
</div>

<div className="mb-16"> <div className="mb-16">
<div> <div>
<label>名前:</label> <label>名前:</label>


Loading…
Cancel
Save