Skip to content

Commit c9d9655

Browse files
committed
Fix regression for optional VR temperature
1 parent ecf197f commit c9d9655

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -308,14 +308,14 @@ <h5>Uptime Information</h5>
308308
</ng-container>
309309
</td>
310310
</tr>
311-
<tr>
312-
<td>Maximum VR Temperature:</td>
313-
<td>
314-
<ng-container *ngIf="info.vrTempMax > 0; else noTemp">
311+
<ng-container *ngIf="info.vrTempMax > 0">
312+
<tr>
313+
<td>Maximum VR Temperature:</td>
314+
<td>
315315
{{info.vrTempMax}}&deg;C
316-
</ng-container>
317-
</td>
318-
</tr>
316+
</td>
317+
</tr>
318+
</ng-container>
319319
</table>
320320
</div>
321321
</div>

0 commit comments

Comments
 (0)