Skip to content

Commit

Permalink
feat: Switch title and name also in nested WMS layers table
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipLeitner authored and raitisbe committed Jul 30, 2021
1 parent 0fcf589 commit 6113f47
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<tbody *ngFor="let sub_layer of layers">
<tr>
<td style="width: 1em"><input type="checkbox" [(ngModel)]="sub_layer.checked" (change)="checked(sub_layer)" [ngModelOptions]="{standalone: true}"/></td>
<td id="hs-add-layer-{{sub_layer.Name}}" style="width: 30%; padding-left: 1em">{{sub_layer.Name}}</td>
<td style="width: 40%;">{{sub_layer.Title}}</td>
<td>{{sub_layer.Abstract}}</td>
<td class="text-truncate" style="width: 40%;">{{sub_layer.Title}}</td>
<td class="text-truncate" id="hs-add-layer-{{sub_layer.Name}}" style="width: 30%; padding-left: 1em">{{sub_layer.Name}}</td>
<td class="text-truncate" >{{sub_layer.Abstract}}</td>
</tr>
<tr *ngIf="sub_layer.Style?.length > 1 && sub_layer.checked">
<td colspan="4">
Expand Down

0 comments on commit 6113f47

Please sign in to comment.