Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/features/layer-tool/layer-tool.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ <h3 class="uk-card-title">Symbology</h3>
<h3 class="uk-card-title">Informations</h3>
<div *ngIf="dataInteraction.description" class="card-content">
<p>
{{dataInteraction.description}}
Information on the layer can be found under <a href="{{dataInteraction.info_url}}">{{dataInteraction.info_url}}</a>
</p>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export class DataInteractionClass {
layer_type: string;
cm_id?: string;
download_url?: string;
info_url?: string;
type_of_layer?: string;
description?: string;
custom_symbology?: any;
Expand Down
Loading