diff --git a/music/index.html b/music/index.html
index a1089e7..b3c7e79 100644
--- a/music/index.html
+++ b/music/index.html
@@ -39,6 +39,7 @@
if(title) {
result = result.filter(song => song.title.toLowerCase().includes(title.toLowerCase()));
}
+ document.getElementById('count').innerText = `Filtered to ${result.length} songs from ${songList.length}.`;
updateTable(result);
}
const loadSongs = (songs) => {