From 52458bfa95eb0bad283af979be4cea4fde9d008e Mon Sep 17 00:00:00 2001 From: Filip Leitner Date: Mon, 15 Jan 2024 11:28:05 +0100 Subject: [PATCH] fix: Add missing standalone directive import --- .../nested-layers-table/nested-layers-table.component.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/projects/hslayers/common/layer-table/nested-layers-table/nested-layers-table.component.ts b/projects/hslayers/common/layer-table/nested-layers-table/nested-layers-table.component.ts index 80c0b5b3e1..b9408f4933 100644 --- a/projects/hslayers/common/layer-table/nested-layers-table/nested-layers-table.component.ts +++ b/projects/hslayers/common/layer-table/nested-layers-table/nested-layers-table.component.ts @@ -5,6 +5,7 @@ import {FormsModule} from '@angular/forms'; import {HsUrlWmsService} from 'hslayers-ng/shared/add-data'; import {TrackByPropertyPipe} from 'hslayers-ng/common/pipes'; import {TranslateCustomPipe} from 'hslayers-ng/shared/language'; +import {WmsLayerHighlightDirective} from '../wms-layer-highlight.directive'; @Component({ selector: 'hs-nested-layers-table', @@ -15,6 +16,7 @@ import {TranslateCustomPipe} from 'hslayers-ng/shared/language'; CommonModule, TranslateCustomPipe, TrackByPropertyPipe, + WmsLayerHighlightDirective, ], }) export class HsNestedLayersTableComponent {