Skip to content

Commit 5b79f9a

Browse files
duckAxeterratec
authored andcommitted
Fixed uptime card table
1 parent d9b4815 commit 5b79f9a

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

main/http_server/axe-os/src/app/components/home/home.component.html

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -288,17 +288,23 @@ <h5>Uptime Information</h5>
288288
<tr>
289289
<td colspan="2">{{info.uptimeSeconds | dateAgo}}</td>
290290
</tr>
291+
</table>
292+
<table>
291293
<tr>
292294
<td>Maximum ASIC Temperature:</td>
293-
<ng-container *ngIf="info.tempMax > 0; else noTemp">
294-
<td>{{info.tempMax}}&deg;C</td>
295-
</ng-container>
295+
<td>
296+
<ng-container *ngIf="info.tempMax > 0; else noTemp">
297+
{{info.tempMax}}&deg;C
298+
</ng-container>
299+
</td>
296300
</tr>
297301
<tr>
298-
<ng-container *ngIf="info.vrTempMax > 0">
299-
<td>Maximum VR Temperature:</td>
300-
<td>{{info.vrTempMax}}&deg;C</td>
301-
</ng-container>
302+
<td>Maximum VR Temperature:</td>
303+
<td>
304+
<ng-container *ngIf="info.vrTempMax > 0; else noTemp">
305+
{{info.vrTempMax}}&deg;C
306+
</ng-container>
307+
</td>
302308
</tr>
303309
</table>
304310
</div>

0 commit comments

Comments
 (0)