Skip to content

Commit

Permalink
Merge pull request #392 from laughing0li/master
Browse files Browse the repository at this point in the history
fix AUS-4190 Features with long names make layer selection impossible…
  • Loading branch information
vjf authored Jun 11, 2024
2 parents 49efd44 + 741dccc commit 48bb7dd
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/app/modalwindow/querier/querier.modal.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,13 @@ <h4 class="alert-heading">Feature Information</h4>
<button type="button" class="btn btn-primary" title="{{selectedToolTip}}"
data-data-toggle-second="tooltip" *ngIf="selectedLayer" (click)="wfs();">
<span>{{selectedLayer}}</span><br />
<span>{{selectedFeature}}</span>
<span style="
display: inline-block;
max-width: 200px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
">{{selectedFeature}}</span>
</button>
<button type="button" class="btn btn-primary dropdown-toggle dropdown-toggle-split"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Expand Down Expand Up @@ -243,7 +249,7 @@ <h4 class="alert-heading">Feature Information</h4>
</div>
</div>
</div>
<mat-tree *ngIf="flatTreeDataSource[currentDoc.key]"
<mat-tree style="margin-top: 20px;" *ngIf="flatTreeDataSource[currentDoc.key]"
[dataSource]="flatTreeDataSource[currentDoc.key]"
[treeControl]="flatTreeControl[currentDoc.key]">
<dl>
Expand Down

0 comments on commit 48bb7dd

Please sign in to comment.