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 @@ -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}}°C</ td >
295- </ ng-container >
295+ < td >
296+ < ng-container *ngIf ="info.tempMax > 0; else noTemp ">
297+ {{info.tempMax}}°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}}°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}}°C
306+ </ ng-container >
307+ </ td >
302308 </ tr >
303309 </ table >
304310 </ div >
You can’t perform that action at this time.
0 commit comments