File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ export const Note = ({ note }: NoteProps) => {
40
40
< span > ノートの作成日時: { dateString } </ span >
41
41
</ Group >
42
42
< Stack gap = "xs" >
43
- < Text > { note . summary } </ Text >
43
+ < Text className = "break-words" > { note . summary } </ Text >
44
44
< NoteStatus status = { note . currentStatus } />
45
45
< div className = "grid grid-cols-1 gap-2 md:grid-cols-[auto_1fr] md:gap-4" >
46
46
< Badge
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ export const Post = ({ post }: PostProps) => {
40
40
/>
41
41
< Text fw = "bolder" > { post . xUser . name } </ Text >
42
42
</ Group >
43
- < Text > { post . text } </ Text >
43
+ < Text className = "break-words" > { post . text } </ Text >
44
44
{ post . links ?. map ( ( link , index ) => (
45
45
< a href = { link . url } key = { `${ post . postId } link_${ index } ` } >
46
46
< Text c = "blue" > { link . url } </ Text >
You can’t perform that action at this time.
0 commit comments