Skip to content

Commit ecf197f

Browse files
duckAxeterratec
authored andcommitted
Fixed uptime card table
1 parent ac91502 commit ecf197f

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
@@ -298,17 +298,23 @@ <h5>Uptime Information</h5>
298298
<tr>
299299
<td colspan="2">{{info.uptimeSeconds | dateAgo}}</td>
300300
</tr>
301+
</table>
302+
<table>
301303
<tr>
302304
<td>Maximum ASIC Temperature:</td>
303-
<ng-container *ngIf="info.tempMax > 0; else noTemp">
304-
<td>{{info.tempMax}}&deg;C</td>
305-
</ng-container>
305+
<td>
306+
<ng-container *ngIf="info.tempMax > 0; else noTemp">
307+
{{info.tempMax}}&deg;C
308+
</ng-container>
309+
</td>
306310
</tr>
307311
<tr>
308-
<ng-container *ngIf="info.vrTempMax > 0">
309-
<td>Maximum VR Temperature:</td>
310-
<td>{{info.vrTempMax}}&deg;C</td>
311-
</ng-container>
312+
<td>Maximum VR Temperature:</td>
313+
<td>
314+
<ng-container *ngIf="info.vrTempMax > 0; else noTemp">
315+
{{info.vrTempMax}}&deg;C
316+
</ng-container>
317+
</td>
312318
</tr>
313319
</table>
314320
</div>

0 commit comments

Comments
 (0)