Skip to content

Commit

Permalink
Merge pull request #5056 from CyraxSector/bugfix/5028
Browse files Browse the repository at this point in the history
Fix order of other fields
  • Loading branch information
Siedlerchr committed Jun 16, 2019
2 parents e0fb482 + 0e704ba commit e74a954
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ protected Collection<String> determineFieldsToShow(BibEntry entry, EntryType ent
.filter(field -> !allKnownFields.contains(field)).collect(Collectors.toList());

otherFields.removeAll(entryType.getDeprecatedFields());
otherFields.removeAll(entryType.getOptionalFields());
otherFields.remove(BibEntry.KEY_FIELD);
otherFields.removeAll(customTabFieldNames);
return otherFields;
Expand Down

0 comments on commit e74a954

Please sign in to comment.