7383-testToMaster #370

Merged
alexm merged 365 commits from 7383-testToMaster into master 2024-05-14 05:46:56 +00:00
1 changed files with 5 additions and 7 deletions
Showing only changes of commit dce48b536d - Show all commits

View File

@ -318,16 +318,14 @@ const addRow = () => {
const daysInWeek = 7; const daysInWeek = 7;
const nextWeek = new Date(today.getTime() + daysInWeek * millisecsInDay); const nextWeek = new Date(today.getTime() + daysInWeek * millisecsInDay);
fixedPricesOriginalData.value.push({ const newPrice = {
started: today, started: today,
ended: nextWeek, ended: nextWeek,
hasMinPrice: 0, hasMinPrice: 0,
}); };
fixedPrices.value.push({
started: today, fixedPricesOriginalData.value.push({ ...newPrice });
ended: nextWeek, fixedPrices.value.push({ ...newPrice });
hasMinPrice: 0,
});
return; return;
} }