From af6174c5de7d16e6a5c1222d4ae8d9a18e35667b Mon Sep 17 00:00:00 2001 From: Alex Martzios Date: Tue, 20 Feb 2024 13:38:31 +0200 Subject: [PATCH 1/3] [develop | DONE | CHANGED] change footer text --- sharedComponents/bottom.component.html | 6 +++--- utils/properties/environments/environment.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sharedComponents/bottom.component.html b/sharedComponents/bottom.component.html index c978bf51..45389b2d 100644 --- a/sharedComponents/bottom.component.html +++ b/sharedComponents/bottom.component.html @@ -1,5 +1,5 @@ -
+
flag black white low
@@ -64,7 +64,7 @@ height="50px" class="el-image" alt="OpenAIRE" loading="lazy">
-
+
@@ -208,7 +208,7 @@ height="50px" class="el-image" alt="OpenAIRE" loading="lazy">
-
+
diff --git a/utils/properties/environments/environment.ts b/utils/properties/environments/environment.ts index f462caeb..d601e40a 100644 --- a/utils/properties/environments/environment.ts +++ b/utils/properties/environments/environment.ts @@ -77,7 +77,7 @@ export let common: EnvProperties = { b2noteAPIURL: 'https://b2note.eudat.eu/', myOrcidLinksPage: "/my-orcid-links", - footerGrantText: "OpenAIRE has received funding from the European Union's Horizon 2020 research and innovation programme under grant agreements No. 777541 and 101017452", + footerGrantText: "OpenAIRE has received funding from a series of EU funded projects.", //connect enermapsURL: "https://lab.idiap.ch/enermaps", From 50244801d6195dfc7034310ec8f8fb2a331f8b8f Mon Sep 17 00:00:00 2001 From: "konstantina.galouni" Date: Wed, 21 Feb 2024 13:54:53 +0200 Subject: [PATCH 2/3] [develop | DONE | CHANGED]: availableOn.component.ts: Removed environment check from fulltext links (display them also in production). --- landingPages/landing-utils/availableOn.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/landingPages/landing-utils/availableOn.component.ts b/landingPages/landing-utils/availableOn.component.ts index 4a6d28f6..1ea5740d 100644 --- a/landingPages/landing-utils/availableOn.component.ts +++ b/landingPages/landing-utils/availableOn.component.ts @@ -22,7 +22,7 @@ import {RouterHelper} from "../../utils/routerHelper.class"; - -
+
Full-Text: From 51dba6da3a37e2f32fa2942727fd2ac3d49913a2 Mon Sep 17 00:00:00 2001 From: "konstantina.galouni" Date: Wed, 21 Feb 2024 14:22:44 +0200 Subject: [PATCH 3/3] [develop | DONE | CHANGED]: quick-contact.component: Added field "quickContactClicked" initially set to false and when help button is clicked, it is set to true and card is displayed (--> recaptcha is loaded only if the users clicks on the button). --- sharedComponents/quick-contact/quick-contact.component.html | 4 ++-- sharedComponents/quick-contact/quick-contact.component.ts | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/sharedComponents/quick-contact/quick-contact.component.html b/sharedComponents/quick-contact/quick-contact.component.html index 116060f7..d43d55d4 100644 --- a/sharedComponents/quick-contact/quick-contact.component.html +++ b/sharedComponents/quick-contact/quick-contact.component.html @@ -1,12 +1,12 @@
-
-
+
Send a message diff --git a/sharedComponents/quick-contact/quick-contact.component.ts b/sharedComponents/quick-contact/quick-contact.component.ts index bf8f75e9..ccf17492 100644 --- a/sharedComponents/quick-contact/quick-contact.component.ts +++ b/sharedComponents/quick-contact/quick-contact.component.ts @@ -11,6 +11,7 @@ declare var UIkit; styleUrls: ['quick-contact.component.less'] }) export class QuickContactComponent implements OnInit, OnDestroy { + public quickContactClicked: boolean = false; public showDrop: boolean = false; @Input() public contactForm: FormGroup;