Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
minerva
core
Commits
926656e6
Commit
926656e6
authored
Aug 29, 2019
by
Piotr Gawron
Browse files
element title option didn't hide title
parent
9c36fcfa
Pipeline
#13382
passed with stage
in 10 minutes and 34 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
926656e6
...
...
@@ -3,6 +3,8 @@ minerva (13.2.0) stable; urgency=medium
PredictProtein
(#
913
)
*
Bug
fix
:
search
by
drugs
didn
't check synonyms in chembl database
* Bug fix: verification of overlay type added (#917)
* Bug fix: show element title option wasn'
t
influencing
title
visibility
(#
910
)
--
Piotr
Gawron
<
piotr
.
gawron
@
uni
.
lu
>
Wed
,
21
Aug
2019
17
:
00
:
00
+
0200
...
...
frontend-js/src/main/js/gui/leftPanel/GuiUtils.js
View file @
926656e6
...
...
@@ -835,9 +835,17 @@ GuiUtils.prototype.createAliasElement = function (params) {
}));
}
div
.
appendChild
(
this
.
createParamLine
({
label
:
alias
.
getType
()
+
"
:
"
,
value
:
alias
.
getName
()}));
div
.
appendChild
(
this
.
createParamLine
({
label
:
alias
.
getType
()
+
"
:
"
,
className
:
self
.
_configurationOptionToClassName
(
ConfigurationType
.
SHOW_ELEMENT_TITLE
),
value
:
alias
.
getName
()
}));
if
(
alias
.
getModelId
()
!==
self
.
getMap
().
getId
())
{
div
.
appendChild
(
self
.
createSubMapLink
({
label
:
"
In submap:
"
,
mapId
:
alias
.
getModelId
()}));
div
.
appendChild
(
self
.
createSubMapLink
({
label
:
"
In submap:
"
,
className
:
self
.
_configurationOptionToClassName
(
ConfigurationType
.
SHOW_ELEMENT_TITLE
),
mapId
:
alias
.
getModelId
()
}));
}
}
div
.
appendChild
(
self
.
createSubMapLink
({
...
...
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