From d1d4d1b57970d17a425c9aca1555afb87a6ceb81 Mon Sep 17 00:00:00 2001 From: Filip Leitner Date: Mon, 30 Sep 2024 10:53:33 +0200 Subject: [PATCH] refactor(wfs-filter): Hide 'Apply filter' button if no filter is selected --- .../components/wfs-filter/wfs-filter.component.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/projects/hslayers/components/wfs-filter/wfs-filter.component.html b/projects/hslayers/components/wfs-filter/wfs-filter.component.html index 6f36304712..da21867a65 100644 --- a/projects/hslayers/components/wfs-filter/wfs-filter.component.html +++ b/projects/hslayers/components/wfs-filter/wfs-filter.component.html @@ -21,7 +21,7 @@ - @if (selectedLayer()) { + @if (selectedLayer() ) { @if(loadingLayerInfo()){
@@ -32,10 +32,12 @@
- + + @if(rule()?.filter){ + }
}