Apply word-break: break-all

This commit is contained in:
c-bata
2024-03-12 11:39:52 +09:00
parent f2beda3006
commit 652af58233
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -152,7 +152,7 @@ export const StudyList: FC<{
to={`${URL_PREFIX}/studies/${study.study_id}`}
>
<CardContent>
<Typography variant="h5">
<Typography variant="h5" sx={{ wordBreak: "break-all" }}>
{study.study_id}. {study.study_name}
</Typography>
<Typography
+1 -1
View File
@@ -183,7 +183,7 @@ export const StudyList: FC<{
>
<CardActionArea component={Link} to={`/${idx}`}>
<CardContent>
<Typography variant="h5">
<Typography variant="h5" sx={{ wordBreak: "break-all" }}>
{study.study_id}. {study.study_name}
</Typography>
<Typography