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 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;
}