7336_devToTest #354

Merged
alexm merged 359 commits from 7336_devToTest into test 2024-05-07 06:34:00 +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 nextWeek = new Date(today.getTime() + daysInWeek * millisecsInDay);
fixedPricesOriginalData.value.push({
const newPrice = {
started: today,
ended: nextWeek,
hasMinPrice: 0,
});
fixedPrices.value.push({
started: today,
ended: nextWeek,
hasMinPrice: 0,
});
};
fixedPricesOriginalData.value.push({ ...newPrice });
fixedPrices.value.push({ ...newPrice });
return;
}