fix: remove Iso
gitea/salix-front/pipeline/pr-master This commit looks good Details

This commit is contained in:
Carlos Satorres 2024-12-10 12:33:53 +01:00
parent 809ad95e46
commit 884138af48
1 changed files with 2 additions and 5 deletions

View File

@ -40,13 +40,10 @@ const dateRanges = computed(() => {
}); });
const reportParams = computed(() => { const reportParams = computed(() => {
const dates = {
to: dateRange(dateRanges.value.to)[1].toISOString(),
from: dateRange(dateRanges.value.from)[1].toISOString(),
};
return { return {
recipientId: Number(route.params.id), recipientId: Number(route.params.id),
...dates, to: dateRange(dateRanges.value.to)[1],
from: dateRange(dateRanges.value.from)[1],
}; };
}); });