From 75ae1c952675ee65ab7b653dc28162439a315041 Mon Sep 17 00:00:00 2001 From: Viktor Lofgren Date: Thu, 5 Dec 2024 16:18:46 +0100 Subject: [PATCH] (site-info) Do not show 'suggest for crawling' when the ndoe affinity is already set to 0 This indicates the domain is already slated for crawling. --- .../search-service/resources/jte/siteinfo/view/overview.jte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/services-application/search-service/resources/jte/siteinfo/view/overview.jte b/code/services-application/search-service/resources/jte/siteinfo/view/overview.jte index 71970dd9..938a6af3 100644 --- a/code/services-application/search-service/resources/jte/siteinfo/view/overview.jte +++ b/code/services-application/search-service/resources/jte/siteinfo/view/overview.jte @@ -94,7 +94,7 @@ @endif - @if (siteInfo.domainInformation().isSuggestForCrawling()) + @if (siteInfo.domainInformation().isSuggestForCrawling() && siteInfo.domainInformation().getNodeAffinity() < 0)