1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

fix: break words first, break all second (#8495)

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),
}));
const StyledMarkdown = styled(Markdown)(({ theme }) => ({
wordBreak: 'break-all',
}));
const StyledMarkdown = styled(Markdown)({
overflowWrap: 'anywhere',
});
export const LatestProjectEvents: FC<{
latestEvents: PersonalDashboardProjectDetailsSchema['latestEvents'];