Merge remote-tracking branch 'origin/master' into angular-14

This commit is contained in:
Alex Martzios 2022-10-31 14:30:42 +02:00
commit bcaf7166a5
2 changed files with 8 additions and 4 deletions

View File

@ -1,10 +1,14 @@
@import (reference) "~src/assets/openaire-theme/less/_import-variables"; @import (reference) "~src/assets/openaire-theme/less/_import-variables";
.quick-contact { .quick-contact {
position: fixed; position: sticky;
position: -webkit-sticky; /* Safari */
bottom: 5vh; bottom: 5vh;
right: 5vw; display: flex;
z-index: 980; justify-content: flex-end;
margin-bottom: 5vh;
margin-right: 5vw;
z-index: @global-z-index - 20;
.uk-drop { .uk-drop {
max-height: 550px; max-height: 550px;

View File

@ -9,7 +9,7 @@ export const DEFAULT_TIMEOUT = new InjectionToken<number>('defaultTimeout');
@Injectable() @Injectable()
export class TimeoutInterceptor implements HttpInterceptor { 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) { constructor(@Inject(DEFAULT_TIMEOUT) protected defaultTimeout: number, @Inject(PLATFORM_ID) private platformId: any) {
} }