Skip to content

Commit

Permalink
no tooltip without executed_at
Browse files Browse the repository at this point in the history
  • Loading branch information
jurajmajerik committed Dec 22, 2023
1 parent 9f10f3b commit 9687b85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/scenes/feature-flags/FeatureFlagSchedule.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export default function FeatureFlagSchedule(): JSX.Element {
title={
failure_reason
? `Failed: ${failure_reason}`
: `Completed: ${dayjs(executed_at).format('MMMM D, YYYY h:mm A')}`
: executed_at && `Completed: ${dayjs(executed_at).format('MMMM D, YYYY h:mm A')}`
}
>
<LemonTag type={type}>
Expand Down

0 comments on commit 9687b85

Please sign in to comment.