Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
Wiki
Manage
Activity
Members
Labels
Plan
Issues
53
Issue boards
Milestones
Wiki
Code
Merge requests
6
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MDM Lab
Wiki
Merge requests
!131
Merge relevant Abstract and references
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Merge relevant Abstract and references
structure-db-with-molstar
into
dev
Overview
0
Commits
41
Pipelines
12
Changes
22
Merged
Remi PLANEL
requested to merge
structure-db-with-molstar
into
dev
1 year ago
Overview
0
Commits
41
Pipelines
12
Changes
1
Expand
merge the 2 sections
Make the way references are displayed more compact
Edited
1 year ago
by
Remi PLANEL
0
0
Merge request reports
Compare
version 8
version 12
49ccf367
1 year ago
version 11
0da71d63
1 year ago
version 10
d7942c96
1 year ago
version 9
c94b2ae8
1 year ago
version 8
6b41b2a2
1 year ago
version 7
2e3f1d56
1 year ago
version 6
394a6b9e
1 year ago
version 5
da4a391f
1 year ago
version 4
c1447e95
1 year ago
version 3
2ab2d177
1 year ago
version 2
1ab97326
1 year ago
version 1
1ab97326
1 year ago
dev (base)
and
version 9
latest version
3b3648d0
41 commits,
1 year ago
version 12
49ccf367
40 commits,
1 year ago
version 11
0da71d63
39 commits,
1 year ago
version 10
d7942c96
38 commits,
1 year ago
version 9
c94b2ae8
37 commits,
1 year ago
version 8
6b41b2a2
36 commits,
1 year ago
version 7
2e3f1d56
35 commits,
1 year ago
version 6
394a6b9e
30 commits,
1 year ago
version 5
da4a391f
29 commits,
1 year ago
version 4
c1447e95
28 commits,
1 year ago
version 3
2ab2d177
27 commits,
1 year ago
version 2
1ab97326
23 commits,
1 year ago
version 1
1ab97326
1 commit,
1 year ago
Show latest version
1 file
+
3
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
components/ServerDbTable.vue
+
3
−
3
Options
@@ -365,9 +365,9 @@ function namesToAccessionChips(names: string[]) {
</v-card-text>
<v-data-table-server
v-if=
"!msError"
v-model:page=
"reactiveParams.page"
color=
"primary"
v-model:items-per-page=
"reactiveParams.hitsPerPage"
v-model:sortBy=
"sortByRef"
v-model:expanded=
"expanded"
show-expand
fixed-header
:loading=
"loading"
:headers=
"headers"
:items=
"msResult?.hits ?? []"
:items-length=
"msResult?.totalHits ?? 0"
:item-value=
"itemValue"
density=
"compact"
:height=
"computedTableHeight"
class=
"elevation-1 mt-2"
>
fixed-header
:loading=
"loading"
:headers=
"headers"
:items=
"msResult?.hits ?? []"
:items-length=
"msResult?.totalHits ?? 0"
:item-value=
"itemValue"
density=
"compact"
:height=
"computedTableHeight"
class=
"elevation-1 mt-2"
>
<
template
#
[`
item.accession_in_sys
`
]=
"{ item }"
>
<CollapsibleChips
:items=
"namesToAccessionChips(item.accession_in_sys)"
></CollapsibleChips>
</
template
>