1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-10 01:16:39 +02:00

fix: break words first, break all second ()

This commit is contained in:
Mateusz Kwasniewski 2024-10-21 15:10:20 +02:00 committed by GitHub
parent a8206f5118
commit 69fcb572ef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -44,9 +44,9 @@ const StyledUserAvatar = styled(UserAvatar)(({ theme }) => ({
marginTop: theme.spacing(0.5), marginTop: theme.spacing(0.5),
})); }));
const StyledMarkdown = styled(Markdown)(({ theme }) => ({ const StyledMarkdown = styled(Markdown)({
wordBreak: 'break-all', overflowWrap: 'anywhere',
})); });
export const LatestProjectEvents: FC<{ export const LatestProjectEvents: FC<{
latestEvents: PersonalDashboardProjectDetailsSchema['latestEvents']; latestEvents: PersonalDashboardProjectDetailsSchema['latestEvents'];