Skip to content

Commit

Permalink
[WEB-1063] style: fix activity/ comment overflow issue. (makeplane#4540)
Browse files Browse the repository at this point in the history
  • Loading branch information
prateekshourya29 authored May 21, 2024
1 parent 8469913 commit 8a960e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const IssueActivityBlockComponent: FC<TIssueActivityBlockComponent> = (pr
<div className="flex-shrink-0 ring-6 w-7 h-7 rounded-full overflow-hidden flex justify-center items-center z-[4] bg-custom-background-80 text-custom-text-200">
{icon ? icon : <Network className="w-3.5 h-3.5" />}
</div>
<div className="w-full text-custom-text-200">
<div className="w-full truncate text-custom-text-200">
<IssueUser activityId={activityId} customUserName={customUserName} />
<span> {children} </span>
<span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ export const IssueCommentBlock: FC<TIssueCommentBlock> = observer((props) => {
<MessageCircle className="w-3 h-3" color="#6b7280" />
</div>
</div>
<div className="w-full relative flex ">
<div className="w-full space-y-1">
<div className="w-full truncate relative flex ">
<div className="w-full truncate space-y-1">
<div>
<div className="text-xs capitalize">
{comment.actor_detail.is_bot
Expand Down

0 comments on commit 8a960e2

Please sign in to comment.