diff --git a/CHANGELOG b/CHANGELOG index a1fb97703dba20ca3c4fdbc26b1e49c52ff9dfeb..a7c84d844cf398e32839a93d425d11e39a3e7c34 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,30 +1,34 @@ +minerva (12.3.0~alpha.0) unstable; urgency=low + * Feature: added current username next to logout button in admin panel (#660) + * Improvement: New comment dialog does not contain content of previous comment dialog (#680) + minerva (12.2.0~beta.1) unstable; urgency=medium * Small improvement: list of publication can be filtered by submap (#614) - * Small improvement: report bug utility shows confirmation dialog on success + * Small improvement: report bug utility shows confirmation dialog on success (#648) * Small improvement: size of add overlay window adjusted to show more data - without scrollbars (#657) - * Small improvement: all popup dialogs in the app have dialog specific css + without scrollbars (#657) + * Small improvement: all popup dialogs in the app have dialog specific css class names (#665) * Bug fix: loading icon is not overlapping input in the search panel (#404) - * Bug fix: position of transcription sites in genes are computed properly + * Bug fix: position of transcription sites in genes are computed properly (#553) - * Bug fix: REQUEST AN ACCOUNT was enabled when associated email was invalid + * Bug fix: REQUEST AN ACCOUNT was enabled when associated email was invalid (#626) - * Bug fix: layout exported to SBML can be properly visualized by COPASI + * Bug fix: layout exported to SBML can be properly visualized by COPASI (#654) - * Bug fix: working with too many maps within the single session could crash + * Bug fix: working with too many maps within the single session could crash connection to server (#651) - * Bug fix: invalid pubmed id could crash listing/downloading publications + * Bug fix: invalid pubmed id could crash listing/downloading publications (#656) * Bug fix: icons in safari sometimes disappear (#661) - * Bug fix: downloading reference genome for the second time resulted in an + * Bug fix: downloading reference genome for the second time resulted in an error (#670) - * Bug fix: plugin validation in admin panel improved to catch more problems + * Bug fix: plugin validation in admin panel improved to catch more problems (#672) - * Bug fix: drawing corrupted heterodimer association in CellDesigner could + * Bug fix: drawing corrupted heterodimer association in CellDesigner could crash map upload (#673) - * Bug fix: custom semantic zooming didn't work with pathways imported from + * Bug fix: custom semantic zooming didn't work with pathways imported from CellDesigner layers (#678) -- Piotr Gawron <piotr.gawron@uni.lu> Thu, 7 Feb 2019 14:00:00 +0200 diff --git a/frontend-js/src/main/js/gui/CommentDialog.js b/frontend-js/src/main/js/gui/CommentDialog.js index 454df0cd09c4badd989b083c37fbc18148c34f15..58e89acdfd2204c272e4d2596eff36c6d2601d10 100644 --- a/frontend-js/src/main/js/gui/CommentDialog.js +++ b/frontend-js/src/main/js/gui/CommentDialog.js @@ -86,8 +86,9 @@ CommentDialog.prototype.open = function (identifiedElements) { self.setEmail(user.getEmail()); self.setName(user.getName() + " " + user.getSurname()); } - - $(self.getElement()).dialog("open"); + var dialog = $(self.getElement()); + dialog.find('textarea').val(''); + dialog.dialog("open"); }); };