Skip to content

Commit 0b334ed

Browse files
authored
fix(app): fix no run history text display (#15401)
* fix(app): fix no run history text display
1 parent 3c8df23 commit 0b334ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/pages/ProtocolDashboard/ProtocolCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ export function ProtocolCard(props: {
227227
</StyledText>
228228
</Flex>
229229
<Flex width="9.25rem">
230-
<StyledText as="p" color={COLORS.grey60}>
230+
<StyledText as="p" color={COLORS.grey60} whiteSpace="nowrap">
231231
{lastRun != null
232232
? formatDistance(new Date(lastRun), new Date(), {
233233
addSuffix: true,

0 commit comments

Comments
 (0)