Skip to content

Commit

Permalink
Fixed lingering card issue on audience finals core screen.
Browse files Browse the repository at this point in the history
  • Loading branch information
patfair committed Jul 21, 2024
1 parent ee859fd commit e3074e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/js/audience_display.js
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ const setTeamInfo = function(side, position, teamId, cards, rankings) {
avatarElement.toggle(teamId > 0);

const cardElement = $(`#${side}FinalTeam${position}Card`);
cardElement.attr("data-card", cards[teamId.toString()]);
cardElement.attr("data-card", cards[teamId.toString()] || "");

const ranking = rankings[teamId];
let rankIndicator = "";
Expand Down

0 comments on commit e3074e1

Please sign in to comment.