Skip to content
Snippets Groups Projects
Commit 373e1169 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

Merge branch '919-overlay-long-name-display-in-the-bar-change' into 'master'

Resolve "overlay long name display in the bar change"

Closes #919

See merge request !935
parents 86d7e896 b8a000b7
No related branches found
No related tags found
1 merge request!935Resolve "overlay long name display in the bar change"
Pipeline #13943 passed
minerva (14.0.0~beta.2) unstable; urgency=low 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: exported SBML passes online validation (#831)
* Bug fix: allow user to remove own comments (#931) * Bug fix: allow user to remove own comments (#931)
* Bug fix: validation of project name length is provided (#950) * Bug fix: validation of project name length is provided (#950)
......
...@@ -126,6 +126,7 @@ AliasInfoWindow.prototype.createChartDiv = function (params) { ...@@ -126,6 +126,7 @@ AliasInfoWindow.prototype.createChartDiv = function (params) {
if (name.length > 20) { if (name.length > 20) {
name = name.substr(0, 20) + "..."; name = name.substr(0, 20) + "...";
} }
name = "[" + overlays[i].getOrder() + "] " + name;
var nameDiv = document.createElement("div"); var nameDiv = document.createElement("div");
nameDiv.className = "minerva-chart-name"; nameDiv.className = "minerva-chart-name";
nameDiv.innerHTML = name + " "; nameDiv.innerHTML = name + " ";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment