Skip to content

Commit

Permalink
fixes text overflow in resource details page (#8904)
Browse files Browse the repository at this point in the history
  • Loading branch information
Keerthilochankumar authored Oct 23, 2024
1 parent 7e15e3c commit 9849ab0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Resource/ResourceDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ export default function ResourceDetails(props: { id: string }) {

<div className="md:col-span-2 md:row-span-2">
<div className="font-semibold leading-relaxed">Reason: </div>
<div className="ml-2">{data.reason || "--"}</div>
<div className="break-words">{data.reason || "--"}</div>
</div>
</div>

Expand Down

0 comments on commit 9849ab0

Please sign in to comment.