File tree Expand file tree Collapse file tree 1 file changed +13
-7
lines changed
main/http_server/axe-os/src/app/components/home Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Original file line number Diff line number Diff 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}}°C</ td >
305- </ ng-container >
305+ < td >
306+ < ng-container *ngIf ="info.tempMax > 0; else noTemp ">
307+ {{info.tempMax}}°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}}°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}}°C
316+ </ ng-container >
317+ </ td >
312318 </ tr >
313319 </ table >
314320 </ div >
You can’t perform that action at this time.
0 commit comments