Merge pull request #835 from c-bata/issue-745

Apply `word-break: break-all`
This commit is contained in:
c-bata
2024-03-12 11:45:26 +09:00
committed by GitHub
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