finally fix multidates?
This commit is contained in:
@@ -126,10 +126,10 @@ const workshopDate = computed(() => {
|
||||
) {
|
||||
str = [format(new Date(event.value.start_at), "dd/MM/yyyy")];
|
||||
if (event.value.end_at.length > 0) {
|
||||
str.push(
|
||||
" - ",
|
||||
format(new Date(event.value.end_at), "dd/MM/yyyy")
|
||||
);
|
||||
str[0] =
|
||||
str[0] +
|
||||
" - " +
|
||||
format(new Date(event.value.end_at), "dd/MM/yyyy");
|
||||
}
|
||||
} else {
|
||||
str = [
|
||||
|
||||
Reference in New Issue
Block a user