#6917 - inputDate_inputTime_improviments #552

Merged
alexm merged 8 commits from 6917-inputDate_inputTime_improviments into test 2024-07-16 11:12:55 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 9cc11f0a28 - Show all commits

View File

@ -49,9 +49,9 @@ const formattedTime = computed({
time = time.substring(0, 2) + ':' + time.substring(3, 5);
alexm marked this conversation as resolved
Review

(comentario/sugerncia) Okey, con regExp podria ser asi '1200'.replace(/^(\d{2})(\d{2})/, "$1:$2")

(comentario/sugerncia) Okey, con regExp podria ser asi '1200'.replace(/^(\d{2})(\d{2})/, "$1:$2")
}
alexm marked this conversation as resolved Outdated

const [hh, mm] = time.split en vez de hacer hours[0] y hours[1]

const [hh, mm] = time.split en vez de hacer hours[0] y hours[1]
if (!props.timeOnly) {
const hours = time.split(':');
const [hh, mm] = time.split(':');
alexm marked this conversation as resolved Outdated

En que casos puede ser undefined?

En que casos puede ser undefined?
const date = new Date(model.value ? model.value : null);
date.setHours(hours[0] ?? 0, hours[1] ?? 0, 0);
date.setHours(hh, mm, 0);
time = date?.toISOString();
}
}