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
821de892
Commit
821de892
authored
Aug 27, 2019
by
Piotr Gawron
Browse files
wrap too long names
parent
6166eb28
Pipeline
#13175
passed with stage
in 10 minutes
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
821de892
...
...
@@ -38,6 +38,7 @@ minerva (14.0.0~beta.0) unstable; urgency=low
* Bug fix: remove of data overlay didn'
t
update
numbering
of
data
overlays
that
are
still
in
the
system
(#
918
)
*
Bug
fix
:
too
long
name
for
data
overlay
in
info
window
is
trimmed
(#
919
)
*
Bug
fix
:
too
long
name
in
general
overlay
list
is
wrapped
(#
857
)
--
Piotr
Gawron
<
piotr
.
gawron
@
uni
.
lu
>
Mon
,
21
Aug
2019
21
:
00
:
00
+
0200
...
...
frontend-js/src/main/js/gui/leftPanel/OverlayPanel.js
View file @
821de892
...
...
@@ -245,7 +245,7 @@ OverlayPanel.prototype.createOverlayRow = function (overlay, checked, disabled)
result
.
className
=
"
active
"
;
}
var
nameTd
=
Functions
.
createElement
({
type
:
"
td
"
,
content
:
overlay
.
getName
(),
xss
:
true
});
var
nameTd
=
Functions
.
createElement
({
type
:
"
td
"
,
content
:
overlay
.
getName
(),
className
:
"
word_wrap
"
,
xss
:
true
});
result
.
appendChild
(
nameTd
);
var
viewTd
=
document
.
createElement
(
"
td
"
);
...
...
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