From 95f2e404342fc0db837f6ab7bc794a066dc63a3e Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sat, 25 Feb 2023 01:39:51 -0500 Subject: [PATCH] Use clearer variable in item box https://groups.google.com/g/zotero-dev/c/TvOfXVxwwkA/m/SdpU1QD7AAAJ --- chrome/content/zotero/elements/itemBox.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/elements/itemBox.js b/chrome/content/zotero/elements/itemBox.js index 83971bd2fc..018a1c91bc 100644 --- a/chrome/content/zotero/elements/itemBox.js +++ b/chrome/content/zotero/elements/itemBox.js @@ -550,7 +550,7 @@ && Zotero.ItemFields.isDate(fieldName) // TEMP - NSF && fieldName != 'dateSent') { - this.addDateRow(fieldNames[i], this.item.getField(fieldName, true), tabindex); + this.addDateRow(fieldName, this.item.getField(fieldName, true), tabindex); continue; } }