Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Devrim Gunyel
core
Commits
c87802f1
Commit
c87802f1
authored
Jun 12, 2019
by
Piotr Gawron
Browse files
target gene contains also information about type of database
parent
087591b4
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
c87802f1
...
...
@@ -10,6 +10,8 @@ minerva (14.0.0~alpha.0) unstable; urgency=low
*
Small
improvement
:
when
removing
overlay
in
admin
panel
there
is
a
confirmation
dialog
(#
696
)
*
Small
improvement
:
overlay
name
is
obligatory
(#
698
)
*
Small
improvement
:
target
gene
in
search
panel
contains
also
information
about
type
of
database
that
identifies
the
target
(#
66
)
*
Bug
fix
:
export
to
CellDesigner
of
reaction
with
two
modifiers
connected
with
boolean
operator
resulted
was
skipping
some
layout
information
*
Bug
fix
:
reaction
in
SBGNML
file
containing
two
products
was
improperly
...
...
frontend-js/src/main/js/gui/leftPanel/AbstractDbPanel.js
View file @
c87802f1
...
...
@@ -426,7 +426,7 @@ AbstractDbPanel.prototype.createTargetRow = function (target, icon) {
descColumn
.
appendChild
(
guiUtils
.
createAnnotations
({
label
:
"
Elements:
"
,
annotations
:
target
.
getTargetParticipants
(),
showType
:
fals
e
,
showType
:
tru
e
,
inline
:
true
,
groupAnnotations
:
false
}));
...
...
frontend-js/src/main/js/gui/leftPanel/GuiUtils.js
View file @
c87802f1
...
...
@@ -371,13 +371,6 @@ GuiUtils.prototype.createAnnotationList = function (annotations, options) {
Object
.
keys
(
grouppedAnnotations
).
sort
().
forEach
(
function
(
annotatorClass
)
{
var
groupContainer
=
createGroupContainer
(
inline
,
annotatorClass
,
annotatorsClassMapping
,
groupAnnotations
);
var
par
;
if
(
inline
)
{
par
=
document
.
createElement
(
"
span
"
);
par
.
innerHTML
=
"
(
"
;
groupContainer
.
appendChild
(
par
);
}
grouppedAnnotations
[
annotatorClass
]
=
grouppedAnnotations
[
annotatorClass
].
sort
(
function
(
a
,
b
)
{
var
aType
=
a
.
getType
().
toUpperCase
();
var
bType
=
b
.
getType
().
toUpperCase
();
...
...
@@ -424,12 +417,6 @@ GuiUtils.prototype.createAnnotationList = function (annotations, options) {
}
}
if
(
inline
)
{
par
=
document
.
createElement
(
"
span
"
);
par
.
innerHTML
=
"
)
"
;
groupContainer
.
appendChild
(
par
);
}
result
.
appendChild
(
groupContainer
);
});
...
...
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