diff options
-rw-r--r-- | extensions/BugModal/web/comments.js | 3 |
1 files changed, 3 insertions, 0 deletions
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); |