Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion e2e/homepage.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ test('has default elements in the page', async ({ page }) => {
await expect(page.getByTestId('add-waypoint-button')).toBeVisible();
await expect(page.getByTestId('reset-waypoints-button')).toBeVisible();

await expect(page.getByText('Nonspecific timeNonspecific')).toBeVisible();
await expect(page.getByText('No specific time')).toBeVisible();
await expect(page.getByTestId('date-time-picker')).toBeVisible();

await expect(
Expand Down
2 changes: 1 addition & 1 deletion src/components/date-time-picker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const DateTimePicker = ({
<Dropdown
clearable
options={[
{ key: 0, text: 'Nonspecific time', value: -1 },
{ key: 0, text: 'No specific time', value: -1 },
{ key: 1, text: 'Leave now', value: 0 },
{ key: 2, text: 'Depart at', value: 1 },
{ key: 3, text: 'Arrive at', value: 2 },
Expand Down