Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
minerva
core
Commits
8d7f95af
Commit
8d7f95af
authored
Aug 29, 2019
by
Piotr Gawron
Browse files
Merge branch '910-element-title' into 'devel_13.2.x'
element title option didn't hide title See merge request
!923
parents
fec173b1
926656e6
Pipeline
#13384
passed with stage
in 10 minutes and 56 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
8d7f95af
...
...
@@ -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 @
8d7f95af
...
...
@@ -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
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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