@@ -18,7 +18,6 @@ import type {
1818 Client ,
1919 CreateTimeEntryBody ,
2020} from ' @/packages/api/src' ;
21- import TimePicker from ' @/packages/ui/src/Input/TimePicker.vue' ;
2221import { getOrganizationCurrencyString } from ' @/utils/money' ;
2322import { canCreateProjects } from ' @/utils/permissions' ;
2423import TagDropdown from ' @/packages/ui/src/Tag/TagDropdown.vue' ;
@@ -30,6 +29,7 @@ import DurationHumanInput from '@/packages/ui/src/Input/DurationHumanInput.vue';
3029
3130import { InformationCircleIcon } from ' @heroicons/vue/20/solid' ;
3231import type { Tag , Task } from ' @/packages/api/src' ;
32+ import TimePickerSimple from " @/packages/ui/src/Input/TimePickerSimple.vue" ;
3333
3434const show = defineModel (' show' , { default: false });
3535const saving = ref (false );
@@ -244,30 +244,34 @@ type BillableOption = {
244244 <div class =" " >
245245 <InputLabel >Start</InputLabel >
246246 <div class =" flex flex-col items-center space-y-2 mt-1" >
247- <TimePicker
247+ <TimePickerSimple
248+
248249 v-model =" localStart"
249- size =" large" ></TimePicker >
250+ size =" large" ></TimePickerSimple >
250251 <DatePicker
251252 v-model =" localStart"
253+ tabindex =" 1"
252254 class =" text-xs text-text-tertiary max-w-28 px-1.5 py-1.5" ></DatePicker >
253255 </div >
254256 </div >
255257 <div class =" " >
256258 <InputLabel >End</InputLabel >
257259 <div class =" flex flex-col items-center space-y-2 mt-1" >
258- <TimePicker
260+ <TimePickerSimple
259261 v-model =" localEnd"
260- size =" large" ></TimePicker >
262+ size =" large" ></TimePickerSimple >
261263 <DatePicker
262264 v-model =" localEnd"
265+ tabindex =" 1"
263266 class =" text-xs text-text-tertiary max-w-28 px-1.5 py-1.5" ></DatePicker >
264267 </div >
265268 </div >
266269 </div >
267270 </template >
268271 <template #footer >
269- <SecondaryButton @click =" show = false" > Cancel</SecondaryButton >
272+ <SecondaryButton tabindex = " 2 " @click =" show = false" > Cancel</SecondaryButton >
270273 <PrimaryButton
274+ tabindex =" 2"
271275 class =" ms-3"
272276 :class =" { 'opacity-25': saving }"
273277 :disabled =" saving"
0 commit comments