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
7f9c694f
Commit
7f9c694f
authored
Sep 17, 2019
by
Piotr Gawron
Browse files
overlay No is visible in alias info window
parent
d8df8d01
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
7f9c694f
minerva
(
14.0.0
~
beta
.2
)
unstable
;
urgency
=
low
*
Small
improvement
:
info
window
contains
information
about
overlay
No
(#
919
)
*
Bug
fix
:
exported
SBML
passes
online
validation
(#
831
)
*
Bug
fix
:
allow
user
to
remove
own
comments
(#
931
)
*
Bug
fix
:
validation
of
project
name
length
is
provided
(#
950
)
...
...
frontend-js/src/main/js/map/window/AliasInfoWindow.js
View file @
7f9c694f
...
...
@@ -126,6 +126,7 @@ AliasInfoWindow.prototype.createChartDiv = function (params) {
if
(
name
.
length
>
20
)
{
name
=
name
.
substr
(
0
,
20
)
+
"
...
"
;
}
name
=
"
[
"
+
overlays
[
i
].
getOrder
()
+
"
]
"
+
name
;
var
nameDiv
=
document
.
createElement
(
"
div
"
);
nameDiv
.
className
=
"
minerva-chart-name
"
;
nameDiv
.
innerHTML
=
name
+
"
"
;
...
...
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