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

overlay No is visible in alias info window

parent d8df8d01
No related branches found
No related tags found
1 merge request!935Resolve "overlay long name display in the bar change"
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)
......
......@@ -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 + " ";
......
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