diff --git a/src/static/js/dom.js b/src/static/js/dom.js
index 7821728..821237a 100644
--- a/src/static/js/dom.js
+++ b/src/static/js/dom.js
@@ -208,6 +208,10 @@ function infoButtonCb(hit) {
.append(tbody)
);
+ tbody.append($("
")
+ .append($("").text("index"))
+ .append($(" | ").text(`[${indexMap[doc["index"]]}]`))
+ );
const displayFields = new Set([
"mime", "size", "mtime", "path", "title", "width", "height", "duration", "audioc", "videoc",
"bitrate", "artist", "album", "album_artist", "genre", "title", "font_name", "tag", "author",
|