diff --git a/src/static/js/index.js b/src/static/js/index.js
index 50e78b8..ee2fe35 100644
--- a/src/static/js/index.js
+++ b/src/static/js/index.js
@@ -62,7 +62,7 @@ class Tag{
let html = [ '
' ];
$(this.entries).each((i, val) => {
let color = (val.role===2||val.role===3)? 'yellow' : 'white';
- html.push(`- ${val.uid}
`);
+ html.push(`- ${val.name}
`);
// html.push(`- ' + item.name + '
`);
});
html.push('
');