fix datepicker dropdown and taborder in create time entry

This commit is contained in:
Gregor Vostrak
2025-03-05 11:13:07 +01:00
parent b6bbcd7097
commit 3026edd27b
2 changed files with 12 additions and 6 deletions

View File

@@ -8,6 +8,7 @@ import { twMerge } from 'tailwind-merge';
const props = defineProps<{
class?: string;
tabindex?: string;
}>();
// This has to be a localized timestamp, not UTC
@@ -50,6 +51,7 @@ const emit = defineEmits(['changed']);
<input
id="start"
ref="datePicker"
:tabindex="tabindex"
:class="
twMerge(
'bg-input-background border text-white border-input-border focus-visible:outline-0 focus-visible:border-input-border-active focus-visible:ring-0 rounded-md',