From 19caea8deed209e45a0a652a95a78b1485261d5e Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Wed, 21 Dec 2016 20:47:44 +0000 Subject: Bug 1262457 - the list of comment tags in the 'tags' menu isn't updated in real time --- extensions/BugModal/web/comments.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/extensions/BugModal/web/comments.js b/extensions/BugModal/web/comments.js index b18f7d3d1..7eb933cfc 100644 --- a/extensions/BugModal/web/comments.js +++ b/extensions/BugModal/web/comments.js @@ -285,6 +285,7 @@ $(function() { // update ui that.parent('.comment-tag').remove(); renderTags(commentNo, tagsFromDom(container)); + updateTagsMenu(); // update bugzilla bugzilla_ajax( @@ -296,6 +297,7 @@ $(function() { }, function(data) { renderTags(commentNo, data); + updateTagsMenu(); }, function(message) { taggingError(commentNo, message); @@ -438,6 +440,7 @@ $(function() { }, function(data) { renderTags(commentNo, data); + updateTagsMenu(); }, function(message) { taggingError(commentNo, message); -- cgit v1.2.3-24-g4f1b