Merge pull request #227 from UniversityRadioYork/marks/repair-unfailed

Fix "repair failed"
This commit is contained in:
Marks Polakovs 2021-04-29 17:50:13 +01:00 committed by GitHub
commit 590bf88410
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -554,8 +554,8 @@ export const getShowplan = (timeslotId: number): AppThunk => async (
ops.push({ ops.push({
op: "MoveItem", op: "MoveItem",
timeslotitemid: item.timeslotitemid, timeslotitemid: item.timeslotitemid,
oldchannel: colIndex, oldchannel: item.channel,
channel: colIndex, channel: item.channel,
oldweight: item.weight, oldweight: item.weight,
weight: itemIndex, weight: itemIndex,
}); });