Skip to content

Commit

Permalink
UX: Messages: Use "Newest" as default mode (#579)
Browse files Browse the repository at this point in the history
Co-authored-by: Roman Zabaluev <[email protected]>
  • Loading branch information
polegkashti and Haarolean authored Oct 16, 2024
1 parent 1930d8b commit 19b13ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/lib/hooks/filterUtils.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { PollingMode } from 'generated-sources';

export const ModeOptions = [
{ value: PollingMode.EARLIEST, label: 'Oldest' },
{ value: PollingMode.LATEST, label: 'Newest' },
{ value: PollingMode.EARLIEST, label: 'Oldest' },
{ value: PollingMode.TAILING, label: 'Live' },
{ value: PollingMode.FROM_OFFSET, label: 'From offset' },
{ value: PollingMode.TO_OFFSET, label: 'To offset' },
Expand Down

0 comments on commit 19b13ea

Please sign in to comment.