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

description of the element is reset after reopening comment dialog

parent 2dc23982
No related branches found
No related tags found
1 merge request!361Resolve "the name of commented protein is remembered in a new comment"
Pipeline #
......@@ -38,13 +38,13 @@ function createRow(elements) {
return row;
}
CommentDialog.prototype.open = function (types) {
CommentDialog.prototype.open = function (identifiedElements) {
var self = this;
self.setTypes([CommentDialog.GENERAL]);
var promises = [CommentDialog.GENERAL];
for (var i = 0; i < types.length; i++) {
var ie = types[i];
for (var i = 0; i < identifiedElements.length; i++) {
var ie = identifiedElements[i];
if (ie.getType() === "ALIAS") {
promises.push(self.getMap().getSubmapById(ie.getModelId()).getModel().getAliasById(ie.getId(), true));
} else if (ie.getType() === "REACTION") {
......@@ -182,6 +182,7 @@ CommentDialog.prototype.setTypes = function (types) {
typeOptions.value = 0;
this._types = types;
typeOptions.onchange();
};
CommentDialog.prototype.getTypes = function () {
......
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