Skip to content

Commit

Permalink
fix: build explorer timestamp going into a new line (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
notTamion authored May 29, 2024
1 parent ba6949d commit be4dc53
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/data/SoftwareBuildsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@ const SoftwareBuildsTable = ({
<td>
<SoftwareBuildChanges project={project} build={build} />
</td>
<td title={formatISODateTime(new Date(build.time))}>
<td
className={"whitespace-nowrap"}
title={formatISODateTime(new Date(build.time))}
>
{formatRelativeDate(new Date(build.time))}
</td>
<td className={"gap-1"}>
Expand Down

0 comments on commit be4dc53

Please sign in to comment.