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

Compound Activity Profile: Use long label for tab title

parent f6eea36b
No related branches found
No related tags found
1 merge request!88Changes for the Midterm Review
<template> <template>
<v-card flat> <v-card flat>
<v-card-title>{{ tabConfig.label }}</v-card-title> <v-card-title>{{ tabConfig.label }} ({{ tabConfig.key }})</v-card-title>
<v-card-text> <v-card-text>
<ChEMBLDataTable <ChEMBLDataTable
:dataset-state="datasetState" :dataset-state="datasetState"
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<div> <div>
<v-tabs v-model="tab" show-arrows> <v-tabs v-model="tab" show-arrows>
<v-tab v-for="item in shownSections" :key="item.key"> <v-tab v-for="item in shownSections" :key="item.key">
{{ item.key }} {{ item.title }}
</v-tab> </v-tab>
</v-tabs> </v-tabs>
...@@ -36,16 +36,19 @@ export default { ...@@ -36,16 +36,19 @@ export default {
{ {
key: 'MULTI', key: 'MULTI',
filter: 'filter1', filter: 'filter1',
label: 'Multiplex Assay', title: 'Cell Health',
label: 'Cell Health Data',
}, },
{ {
key: 'INCU', key: 'INCU',
filter: 'filter2', filter: 'filter2',
title: 'Incucyte Cell Viability',
label: 'Incucyte Cell Viability', label: 'Incucyte Cell Viability',
}, },
{ {
key: 'LIABILITY', key: 'LIABILITY',
filter: 'filter3', filter: 'filter3',
title: 'Liability',
label: 'Liability Data', label: 'Liability Data',
}, },
], ],
...@@ -53,47 +56,56 @@ export default { ...@@ -53,47 +56,56 @@ export default {
{ {
key: 'AB', key: 'AB',
filter: 'filter1', filter: 'filter1',
title: 'Affinity Biochemical',
label: 'Affinity Biochemical Assay', label: 'Affinity Biochemical Assay',
}, },
{ {
key: 'AOT', key: 'AOT',
filter: 'filter2', filter: 'filter2',
title: 'Affinity On-target Cellular',
label: 'Affinity On-target Cellular Assay', label: 'Affinity On-target Cellular Assay',
}, },
{ {
key: 'AP', key: 'AP',
filter: 'filter3', filter: 'filter3',
title: 'Affinity Phenotypic Cellular',
label: 'Affinity Phenotypic Cellular Assay', label: 'Affinity Phenotypic Cellular Assay',
}, },
{ {
key: 'S', key: 'S',
filter: 'filter4', filter: 'filter4',
title: 'Selectivity',
label: 'Selectivity Assay', label: 'Selectivity Assay',
}, },
{ {
key: 'ASIC50, ASSS', key: 'ASIC50, ASSS',
filter: 'filter5', filter: 'filter5',
title: 'Alphascreen',
label: 'Alphascreen Assay', label: 'Alphascreen Assay',
}, },
{ {
key: 'GPCR', key: 'GPCR',
filter: 'filter6', filter: 'filter6',
title: 'GPCR Beta-arrestin Recruitment',
label: 'GPCR Beta-arrestin Recruitment Assay', label: 'GPCR Beta-arrestin Recruitment Assay',
}, },
{ {
key: 'NanoBRET', key: 'NanoBRET',
filter: 'filter7', filter: 'filter7',
title: 'NanoBRET',
label: 'NanoBRET Assay', label: 'NanoBRET Assay',
}, },
{ {
key: 'ITC', key: 'ITC',
filter: 'filter8', filter: 'filter8',
label: 'ITC Assay', title: 'Isothermal Titration Calorimetry',
label: 'Isothermal Titration Calorimetry Assay',
}, },
{ {
key: 'HTRF', key: 'HTRF',
filter: 'filter9', filter: 'filter9',
label: 'HTRF Assay', title: 'Homogeneous Time Resolved Fluorescence',
label: 'Homogeneous Time Resolved Fluorescence Assay',
}, },
], ],
}, },
......
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