Skip to content

Commit

Permalink
Merge pull request #39401 from Krishna2323/krishna2323/issue/38691
Browse files Browse the repository at this point in the history
fix: mWeb - Task - Assigned to email id is cut off in task details page.
  • Loading branch information
mountiny authored Apr 3, 2024
2 parents 488664d + ff76f0b commit ebc8de8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ReportActionItem/TaskAction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function TaskAction({action}: TaskActionProps) {
const message = TaskUtils.getTaskReportActionMessage(action);

return (
<View style={[styles.flex1, styles.flexRow, styles.alignItemsCenter]}>
<View style={[styles.flex1, styles.flexRow, styles.alignItemsCenter, styles.breakWord, styles.preWrap]}>
{message.html ? <RenderHTML html={`<muted-text>${message.html}</muted-text>`} /> : <Text style={[styles.chatItemMessage, styles.colorMuted]}>{message.text}</Text>}
</View>
);
Expand Down

0 comments on commit ebc8de8

Please sign in to comment.