Display EXIF tags on document info panel, remove march=native on openjp

This commit is contained in:
2020-02-09 13:21:19 -05:00
parent 75f99025d9
commit 1ce8b298a1
3 changed files with 3 additions and 3 deletions

View File

@@ -175,7 +175,7 @@ function infoButtonCb(hit) {
"bitrate", "artist", "album", "album_artist", "genre", "title", "font_name", "tag"
]);
Object.keys(doc)
.filter(key => key.startsWith("_keyword.") || key.startsWith("_text.") || displayFields.has(key))
.filter(key => key.startsWith("_keyword.") || key.startsWith("_text.") || displayFields.has(key) || key.startsWith("exif_"))
.forEach(key => {
tbody.append($("<tr>")
.append($("<td>").text(key))