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