Skip to content
Snippets Groups Projects
Commit aa6753f2 authored by Remi  PLANEL's avatar Remi PLANEL
Browse files

sort in order to have a correct key

parent f34a3d2c
No related branches found
No related tags found
1 merge request!226Resolve "Design of the structure section in a system's page"
Pipeline #126750 waiting for manual action with stages
in 5 minutes and 37 seconds
...@@ -70,7 +70,7 @@ const groupedPdocks = computed(() => { ...@@ -70,7 +70,7 @@ const groupedPdocks = computed(() => {
} else { } else {
throw createError(`More than 2 proteins in a dimer structure for system ${computedSystem.value} !`) throw createError(`More than 2 proteins in a dimer structure for system ${computedSystem.value} !`)
} }
}), d => d.system_genes.join("--")) }), d => d.system_genes.sort().join("--"))
}) })
......
...@@ -79,7 +79,7 @@ export default defineNitroPlugin((nitroApp) => { ...@@ -79,7 +79,7 @@ export default defineNitroPlugin((nitroApp) => {
if (index !== -1) { if (index !== -1) {
file.body.children.splice(index + 1, 0, { file.body.children.splice(index + 1, 0, {
type: "element", type: "element",
tag: 'matrix-pdock', tag: 'pdockq-matrix',
props: {}, props: {},
children: [] children: []
}) })
......
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