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
......@@ -70,7 +70,7 @@ const groupedPdocks = computed(() => {
} else {
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) => {
if (index !== -1) {
file.body.children.splice(index + 1, 0, {
type: "element",
tag: 'matrix-pdock',
tag: 'pdockq-matrix',
props: {},
children: []
})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment