From 3c04d3ea4418b0e36cb8493ee16ff59fa29da3ca Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Tue, 17 Jun 2008 07:08:13 +0000 Subject: [PATCH] Fix tag pane refresh after adding tag to item --- chrome/content/zotero/xpcom/data/tag.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/data/tag.js b/chrome/content/zotero/xpcom/data/tag.js index 3a6e8d8f6..cd156bec0 100644 --- a/chrome/content/zotero/xpcom/data/tag.js +++ b/chrome/content/zotero/xpcom/data/tag.js @@ -397,7 +397,7 @@ Zotero.Tag.prototype.save = function () { //Zotero.Notifier.trigger('add', 'tag-item', this.id + '-' + itemID); // TODO: notify linked items of name changes? - // Zotero.Notifier.trigger('modify', 'item', itemIDs); + Zotero.Notifier.trigger('modify', 'item', removed.concat(newids)); } Zotero.DB.commitTransaction();