From f49c44f5c53780e4794dc1ef4cbacfb20cabbd97 Mon Sep 17 00:00:00 2001 From: Rainer Killinger Date: Thu, 20 Apr 2023 16:59:41 +0200 Subject: [PATCH] fix: typo in catalog provider query --- src/app/modules/catalog/catalog.provider.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/modules/catalog/catalog.provider.ts b/src/app/modules/catalog/catalog.provider.ts index 58a81ac4..adef15ab 100644 --- a/src/app/modules/catalog/catalog.provider.ts +++ b/src/app/modules/catalog/catalog.provider.ts @@ -121,11 +121,11 @@ export class CatalogProvider { arguments: { bounds: { lowerBound: { - limit: `${new Date(new Date().setFullYear(new Date().getFullYear() - 1)).toISOString}`, + limit: `${new Date(new Date().setFullYear(new Date().getFullYear() - 1)).toISOString()}`, mode: 'inclusive', }, upperBound: { - limit: `${new Date(new Date().setFullYear(new Date().getFullYear() + 1)).toISOString}`, + limit: `${new Date(new Date().setFullYear(new Date().getFullYear() + 1)).toISOString()}`, mode: 'inclusive', }, },