Skip to content

Commit

Permalink
fix: display property in take (#5993)
Browse files Browse the repository at this point in the history
  • Loading branch information
gakshita authored Nov 13, 2024
1 parent 4b50b27 commit 3eb9118
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions web/core/components/issues/peek-overview/properties.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,13 @@ export const PeekOverviewProperties: FC<IPeekOverviewProperties> = observer((pro
<span>Created by</span>
</div>
<div className="w-full h-full flex items-center gap-1.5 rounded px-2 py-0.5 text-sm justify-between cursor-not-allowed">
<ButtonAvatars showTooltip userIds={createdByDetails?.id} />
<span className="flex-grow truncate text-xs leading-5">{createdByDetails?.display_name}</span>
<ButtonAvatars
showTooltip
userIds={createdByDetails?.display_name.includes("-intake") ? null : createdByDetails?.id}
/>
<span className="flex-grow truncate text-xs leading-5">
{createdByDetails?.display_name.includes("-intake") ? "Plane" : createdByDetails?.display_name}
</span>
</div>
</div>
)}
Expand Down

0 comments on commit 3eb9118

Please sign in to comment.