typo
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
This commit is contained in:
parent
31eb22c1b4
commit
f774b1f784
|
@ -69,14 +69,14 @@ class Controller extends Section {
|
|||
if (!$events.length) return;
|
||||
|
||||
const day = $days[0];
|
||||
const zonesIds = [];
|
||||
const zoneIds = [];
|
||||
for (let event of $events)
|
||||
zonesIds.push(event.zoneFk);
|
||||
zoneIds.push(event.zoneFk);
|
||||
|
||||
this.$.zoneEvents.show($event.target);
|
||||
|
||||
const params = {
|
||||
zonesId: zonesIds,
|
||||
zoneIds: zoneIds,
|
||||
date: day
|
||||
};
|
||||
|
||||
|
|
|
@ -110,7 +110,7 @@ describe('Zone Component vnZoneDeliveryDays', () => {
|
|||
{zoneFk: 8}
|
||||
];
|
||||
const params = {
|
||||
zonesId: [1, 2, 8],
|
||||
zoneIds: [1, 2, 8],
|
||||
date: [day][0]
|
||||
};
|
||||
const response = [{id: 1, hour: ''}];
|
||||
|
|
Loading…
Reference in New Issue