[lightning] fix issue during initial node.features indexing

This commit is contained in:
nymkappa
2023-07-16 18:24:42 +09:00
parent 8fb67a914c
commit 6fe32cdd19
2 changed files with 15 additions and 12 deletions

View File

@@ -102,10 +102,10 @@
</td>
</ng-template>
</tr>
<tr *ngIf="node.geolocation">
<tr *ngIf="node.geolocation && node.featuresBits">
<ng-container *ngTemplateOutlet="featurebits;context:{bits: node.featuresBits}"></ng-container>
</tr>
<tr *ngIf="!node.geolocation" class="d-table-row d-md-none ">
<tr *ngIf="!node.geolocation && node.featuresBits" class="d-table-row d-md-none">
<ng-container *ngTemplateOutlet="featurebits;context:{bits: node.featuresBits}"></ng-container>
</tr>
</tbody>