From b36226f8f2f0d31a430cd66a20d4c97fcbf048af Mon Sep 17 00:00:00 2001 From: Konrad Lang Date: Mon, 27 May 2024 09:43:53 +0200 Subject: [PATCH] 3rd challenge driven call added. --- package.json | 2 +- .../popovers/NegotiatorSelection.vue | 23 +++++++++++++++++++ src/config/i18n.js | 1 + 3 files changed, 25 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 51137f4..79034b8 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "molgenis-app-canserv-explorer", "license": "LGPL-3.0", - "version": "1.3.8", + "version": "1.3.9", "description": "Vue application for the CanSERV service explorer; A card detail view on BBMRI-ERIC service providers / service data. Based on molgenis-app-biobank-explorer version 7.20.0", "scripts": { "serve": "vue-cli-service serve", diff --git a/src/components/popovers/NegotiatorSelection.vue b/src/components/popovers/NegotiatorSelection.vue index de92673..4501d56 100644 --- a/src/components/popovers/NegotiatorSelection.vue +++ b/src/components/popovers/NegotiatorSelection.vue @@ -87,6 +87,22 @@ +
+ {{ negotiatorChallengeCall3ButtonText }} + + +
@@ -170,6 +186,10 @@ export default { this.cartVisible = false this.SendToARIAwithCID({ ARIAcid: 'canserv-2nd-challenge---driven-call' }) }, + sendRequest3rdChallengeCall () { + this.cartVisible = false + this.SendToARIAwithCID({ ARIAcid: 'canserv-3rd-challenge-driven-call' }) + }, sendRequest () { this.cartVisible = false this.SendToARIAwithCID({ ARIAcid: 257 }) @@ -218,6 +238,9 @@ export default { negotiatorChallengeCallXButtonText () { return this.isPodium ? this.uiText.send_to_podium : this.uiText.send_to_aria_challenge_call_x }, + negotiatorChallengeCall3ButtonText () { + return this.isPodium ? this.uiText.send_to_podium : this.uiText.send_to_aria_challenge_call_3 + }, currentSelectedCollections () { return this.isPodium ? this.collectionsInPodium : this.selectedCollections }, diff --git a/src/config/i18n.js b/src/config/i18n.js index ca6674f..a0ec937 100644 --- a/src/config/i18n.js +++ b/src/config/i18n.js @@ -15,6 +15,7 @@ const i18n = { send_to_aria: 'Start your proposal in ARIA', send_to_aria_open_call: 'Apply through open call until 21st May', send_to_aria_challenge_call_x: 'Apply through challenge-driven call: "Reaching an Understanding of Cancer"', + send_to_aria_challenge_call_3: 'Apply through challenge-driven call: "Revolutionising Cancer Patient Care"', send_to_podium: 'Send to Podium', card_biobank_details: 'View Service Provider', card_collections_details: 'View Services',