Skip to content

Commit

Permalink
Merge pull request #101 from dheerajsingh0/95-dheerajsingh0-Text-wrap…
Browse files Browse the repository at this point in the history
…ping-into-two-lines-in-table

95-dheerajsingh0-Text-wrapping-into-two-lines
  • Loading branch information
lazycoder1 authored Aug 9, 2023
2 parents 6ab14a5 + a7da730 commit b30361d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/common/status/Status.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ export default function Status({ type, status, ago }: { type?: boolean; status?:
)}
{status === 'success' && (
<span className="flex items-cente gap-2 rounded-full">
<img src="/images/Success.svg" alt="" /> <span className="tracking-normal">{ago}</span>
<img src="/images/Success.svg" alt="" /> <span className="tracking-normal whitespace-nowrap">{ago}</span>
</span>
)}
{status === 'failure' && (
<span className="flex items-center gap-2 rounded-full">
<img src="/images/failed.svg" alt="" /> <span className="tracking-normal">{ago}</span>
<img src="/images/failed.svg" alt="" /> <span className="tracking-normal whitespace-nowrap">{ago}</span>
</span>
)}
</div>
Expand Down

1 comment on commit b30361d

@vercel
Copy link

@vercel vercel bot commented on b30361d Aug 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.