diff --git a/src/showplanner/index.tsx b/src/showplanner/index.tsx index 3f6fb7f..187b82a 100644 --- a/src/showplanner/index.tsx +++ b/src/showplanner/index.tsx @@ -243,8 +243,11 @@ const Showplanner: React.FC = function() { weight: data.index, }); } - async function onCtxUnPlayedClick(e: any, data: { id: string }) { - dispatch(setItemPlayed(data.id, false)); + async function onCtxUnPlayedClick( + e: any, + data: { id: string; column: number } + ) { + dispatch(setItemPlayed(data.id, false, data.column)); } // Add support for reloading the show plan from the iFrames.