diff --git a/e2e/time.spec.ts b/e2e/time.spec.ts index 1de2fb11..5549f1c8 100644 --- a/e2e/time.spec.ts +++ b/e2e/time.spec.ts @@ -183,7 +183,7 @@ test('test that adding a new tag to an existing time entry works', async ({ }); // Test that Start / End Time Update Works -test('test that updating a the start of an existing time entry in the overview works on blur', async ({ +test('test that updating a the start of an existing time entry in the overview works on enter', async ({ page, }) => { await goToTimeOverview(page); @@ -220,7 +220,7 @@ test('test that updating a the start of an existing time entry in the overview w page .getByTestId('time_entry_range_end') .getByTestId('time_picker_minute') - .press('Tab'), + .press('Enter'), ]); }); diff --git a/resources/js/Components/Common/DatePicker.vue b/resources/js/Components/Common/DatePicker.vue index 05bf8f61..9d854215 100644 --- a/resources/js/Components/Common/DatePicker.vue +++ b/resources/js/Components/Common/DatePicker.vue @@ -1,7 +1,11 @@