Skip to content

Commit

Permalink
fix(frontend): Consistent naming in earliest backfills (#25755)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasfarias authored Oct 23, 2024
1 parent 1aad422 commit 12350ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/scenes/pipeline/BatchExportBackfillModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export function BatchExportBackfillModal({ id }: BatchExportRunsLogicProps): JSX
}
/>
) : (
<LemonInput value="Earliest available" disabled />
<LemonInput value="Beginning of time" disabled />
)
}
</LemonField>
Expand All @@ -120,8 +120,8 @@ export function BatchExportBackfillModal({ id }: BatchExportRunsLogicProps): JSX
bordered
label={
<span className="flex items-center gap-2">
Backfill since earliest available
<Tooltip title="If selected, we will backfill data since the earliest available date until the provided end date. There is no need to set a start date.">
Backfill since beginning of time
<Tooltip title="If selected, we will backfill all data since the beginning of time until the end date set below. There is no need to set a start date for the backfill.">
<IconInfo className=" text-lg text-muted-alt" />
</Tooltip>
</span>
Expand Down

0 comments on commit 12350ff

Please sign in to comment.