Skip to content

Commit

Permalink
Field monitor fixes
Browse files Browse the repository at this point in the history
Fix field monitor issues with Bootstrap 5
  • Loading branch information
ejordan376 committed Sep 28, 2024
1 parent 76768cd commit d8a9018
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion static/js/field_monitor_display.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ var handleArenaStatus = function(data) {
teamBypassElement.text("BYP");
} else {
teamBypassElement.attr("data-status-ok", true);
teamBypassElement.text("");
teamBypassElement.text("ES");
}
});
};
Expand Down
4 changes: 2 additions & 2 deletions templates/field_monitor_display.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
</head>
<body>
<div id="matchStatusRow" class="ds-dependent">
<div id="matchName" class="text-left" style="width: 45%; padding-left: 1%;"></div>
<div id="matchName" class="text-start" style="width: 45%; padding-left: 1%;"></div>
<div id="matchTime" class="text-center" style="width: 10%;"></div>
<div id="matchState" class="text-right" style="width: 45%; padding-right: 1%;"></div>
<div id="matchState" class="text-end" style="width: 45%; padding-right: 1%;"></div>
</div>
{{template "row" dict "leftPosition" "1" "rightPosition" "3"}}
{{template "row" dict "leftPosition" "2" "rightPosition" "2"}}
Expand Down

0 comments on commit d8a9018

Please sign in to comment.