Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Metagenomics
metagenedb
Commits
868ccd42
Commit
868ccd42
authored
Jul 01, 2019
by
Kenzo-Hugo Hillion
♻
Browse files
add empty column to table in front
parent
cfe82121
Pipeline
#12961
passed with stage
in 1 minute and 12 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
frontend/src/views/Genes.vue
View file @
868ccd42
...
...
@@ -19,12 +19,12 @@
<v-data-table
:headers=
"headers"
:items=
"genes"
class=
"elevation-1"
>
<template
v-slot:items=
"props"
>
<td>
{{
props
.
item
.
gene_id
}}
</td>
<td
class=
"text-xs-right"
>
{{
props
.
item
.
gene_length
}}
</td>
<td
class=
"text-xs-right"
>
{{
props
.
item
.
functions
[
0
]
}}
</td>
<td
class=
"text-xs"
>
{{
props
.
item
.
gene_length
}}
</td>
<td
class=
"text-xs"
></td>
<td
class=
"text-xs"
>
{{
props
.
item
.
functions
[
0
]
}}
</td>
</
template
>
</v-data-table>
...
...
@@ -51,7 +51,8 @@ export default {
value
:
'
name
'
},
{
text
:
'
Length
'
,
value
:
'
gene_length
'
},
{
text
:
'
Functions
'
,
value
:
'
functions
'
,
align
:
'
right
'
,
},
{
text
:
'
Taxo
'
,
sortable
:
false
,
},
{
text
:
'
Functions
'
,
value
:
'
functions
'
,
sortable
:
false
,
},
]
};
},
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment