Skip to content
Snippets Groups Projects
Commit e6a6e85b authored by David Mendez's avatar David Mendez
Browse files

Cell health and viability: Add button to download CSV

parent e2fbccb0
No related branches found
No related tags found
1 merge request!80Add multiplex data visualisation
......@@ -20,8 +20,11 @@
</v-card-text>
<template v-else>
<v-card-text>
<div class="d-flex justify-center align-center">
<div class="d-flex justify-space-around align-center">
<DataExplanationDialog />
<v-btn color="primary" :href="csvURL">
CSV<v-icon right> mdi-download </v-icon>
</v-btn>
</div>
</v-card-text>
<v-card-text>
......@@ -67,6 +70,11 @@ export default {
dataPerConcentration: {},
}
},
computed: {
csvURL() {
return `${process.env.esProxyBaseUrl}/eubopen/visualisations/compound/cell_viability_and_health_data/download/CHEMBL180022`
},
},
mounted() {
this.loadData()
},
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment