From 7804bfc18f975460df4214aecbf08f4190e04594 Mon Sep 17 00:00:00 2001 From: Lene Wasskog <lene.wasskog@nibio.no> Date: Wed, 11 Dec 2024 10:51:36 +0100 Subject: [PATCH] fix: Remove paranthesis from crop param --- html/index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/html/index.html b/html/index.html index 936eddd..2f6e43b 100644 --- a/html/index.html +++ b/html/index.html @@ -112,8 +112,7 @@ endpoint += `+media_type:%22${encodedMediatype}%22`; } if(encodedCrop) { - endpoint += `+crop:(%22${encodedCrop}%22)`; - //endpoint += `&fq=language:eng`; + endpoint += `+crop:%22${encodedCrop}%22`; } console.info("endpoint", endpoint) -- GitLab