Skip to content

Commit

Permalink
fix(app): fix no run history text display (#15401)
Browse files Browse the repository at this point in the history
* fix(app): fix no run history text display
  • Loading branch information
koji authored Jun 12, 2024
1 parent 3c8df23 commit 0b334ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/pages/ProtocolDashboard/ProtocolCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ export function ProtocolCard(props: {
</StyledText>
</Flex>
<Flex width="9.25rem">
<StyledText as="p" color={COLORS.grey60}>
<StyledText as="p" color={COLORS.grey60} whiteSpace="nowrap">
{lastRun != null
? formatDistance(new Date(lastRun), new Date(), {
addSuffix: true,
Expand Down

0 comments on commit 0b334ed

Please sign in to comment.