From 81a29287d4cccb5db023c9978f1c18a41d4afe6f Mon Sep 17 00:00:00 2001 From: "konstantina.galouni" Date: Wed, 26 Oct 2022 13:49:01 +0300 Subject: [PATCH 1/2] [Library]: timeout-interceptor.service.ts: #8186 - Added properties.claimsAPIURL in TIMEOUT_WHITELIST to exclude claims requests from timeout interceptor. --- timeout-interceptor.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timeout-interceptor.service.ts b/timeout-interceptor.service.ts index 0ed59b2b..4737ab60 100644 --- a/timeout-interceptor.service.ts +++ b/timeout-interceptor.service.ts @@ -9,7 +9,7 @@ export const DEFAULT_TIMEOUT = new InjectionToken('defaultTimeout'); @Injectable() export class TimeoutInterceptor implements HttpInterceptor { - private static TIMEOUT_WHITELIST = [properties.csvAPIURL, properties.registryUrl]; + private static TIMEOUT_WHITELIST = [properties.csvAPIURL, properties.registryUrl, properties.claimsAPIURL]; constructor(@Inject(DEFAULT_TIMEOUT) protected defaultTimeout: number, @Inject(PLATFORM_ID) private platformId: any) { } From f53ca8fde82ab31581b2248550e71272d589c905 Mon Sep 17 00:00:00 2001 From: Alex Martzios Date: Mon, 31 Oct 2022 14:00:54 +0200 Subject: [PATCH 2/2] help button: release at the bottom --- .../quick-contact/quick-contact.component.less | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/sharedComponents/quick-contact/quick-contact.component.less b/sharedComponents/quick-contact/quick-contact.component.less index a0c2bfef..77c62004 100644 --- a/sharedComponents/quick-contact/quick-contact.component.less +++ b/sharedComponents/quick-contact/quick-contact.component.less @@ -1,10 +1,14 @@ @import (reference) "~src/assets/openaire-theme/less/_import-variables"; .quick-contact { - position: fixed; + position: sticky; + position: -webkit-sticky; /* Safari */ bottom: 5vh; - right: 5vw; - z-index: 980; + display: flex; + justify-content: flex-end; + margin-bottom: 5vh; + margin-right: 5vw; + z-index: @global-z-index - 20; .uk-drop { max-height: 550px;