Skip to content

Commit

Permalink
2024 week 0 strikes again
Browse files Browse the repository at this point in the history
  • Loading branch information
akeaswaran committed Aug 24, 2024
1 parent 8351dd2 commit 634f990
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/views/pages/cfb/game.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -1258,7 +1258,8 @@ function buildPlayTable(plays, prefix, expandable, errorMsg, showGuide, expandin
</main>
<main class="col-lg-6 ms-sm-auto px-md-4">
<%
var currentDrives = gameData.drives.current || [];
var curDrive = gameData.drives.current
var currentDrives = (curDrive != null) ? [curDrive] : [];
var gameDrives = [...gameData.drives.previous, ...currentDrives]
var subTitle = ""
if (gameData.gameInfo.status.type.completed != true) {
Expand Down

0 comments on commit 634f990

Please sign in to comment.