Skip to content

Commit

Permalink
field monitor fixes (#195)
Browse files Browse the repository at this point in the history
* Stack light Status

Update stack light status to show disconnected robots during a match.

* Rio Linked

Add Rio ping to field monitor and logs to show no code status

* fix

Fixed Log viewer go.

* Dark mode

* Field monitor fixes

Fix field monitor issues with Bootstrap 5
  • Loading branch information
ejordan376 authored and patfair committed Sep 28, 2024
1 parent 2f8c7c7 commit 2c4c10d
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 2c4c10d

Please sign in to comment.