This commit is contained in:
William Clark 2023-11-22 15:47:28 +00:00
parent a0b08b0f29
commit e735011e96
3 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 63 KiB

After

Width:  |  Height:  |  Size: 56 KiB

View File

@ -50,7 +50,7 @@ function updateReadTable(channel, tableType) {
const row = elements[tableType].table.querySelector("tbody").insertRow(-1);
row.insertCell(0).innerText = id;
row.insertCell(1).innerText = value;
row.insertCell(1).innerText = value.toFixed(2);
}
function updateConfigTable(channel, tableType) {

View File

@ -28,7 +28,7 @@
th, td {
padding: 12px;
text-align: left;
text-align: center;
border-bottom: 1px solid #ddd;
}