Fix base fields in connectorTypeSchemaData.js

This commit is contained in:
Dan Stillman 2018-05-10 02:26:44 -04:00
parent 5751838a3d
commit 05843bb093
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@
for (let type of types) {
var fieldIDs = Zotero.ItemFields.getItemTypeFields(type.id);
var baseFields = {};
for (let fieldID in fieldIDs) {
for (let fieldID of fieldIDs) {
if (baseMappedFields.includes(fieldID)) {
baseFields[fieldID] = Zotero.ItemFields.getBaseIDFromTypeAndField(type.id, fieldID);
}

File diff suppressed because one or more lines are too long