diff --git a/package.json b/package.json index 886dda4..ccfd12f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "molgenis-app-canserv-explorer", "license": "LGPL-3.0", - "version": "1.4.2", + "version": "1.4.3", "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 970b937..e7015a8 100644 --- a/src/components/popovers/NegotiatorSelection.vue +++ b/src/components/popovers/NegotiatorSelection.vue @@ -11,7 +11,7 @@ v-model="cartVisible" @hide="cartVisible = false"> - @@ -158,6 +171,10 @@ export default { this.cartVisible = false this.SendToARIAwithCID({ ARIAcid: 'canserv-2nd-challenge---driven-call' }) }, + sendRequest3rdOpenCall () { + this.cartVisible = false + this.SendToARIAwithCID({ ARIAcid: 'canserv-third-open-call' }) + }, sendRequest3rdChallengeCall () { this.cartVisible = false this.SendToARIAwithCID({ ARIAcid: 'canserv-3rd-challenge-driven-call' }) @@ -213,6 +230,9 @@ export default { negotiatorChallengeCall3ButtonText () { return this.isPodium ? this.uiText.send_to_podium : this.uiText.send_to_aria_challenge_call_3 }, + negotiatorOpenCall3ButtonText () { + return this.isPodium ? this.uiText.send_to_podium : this.uiText.send_to_aria_open_call_3 + }, currentSelectedCollections () { return this.isPodium ? this.collectionsInPodium : this.selectedCollections }, diff --git a/src/config/i18n.js b/src/config/i18n.js index a0ec937..b8d9808 100644 --- a/src/config/i18n.js +++ b/src/config/i18n.js @@ -16,6 +16,7 @@ const i18n = { 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_aria_open_call_3: 'Apply through Open Call', send_to_podium: 'Send to Podium', card_biobank_details: 'View Service Provider', card_collections_details: 'View Services',