diff --git a/static/index.html b/static/index.html index 86746bd..dd9dfec 100644 --- a/static/index.html +++ b/static/index.html @@ -130,7 +130,7 @@ async function loadTags(){ try{ const data = await fetchJSON('/api/tags'); const body = document.getElementById('tags-body'); - body.innerHTML = data.models.map(m=>`${m.name}${m.digest}`).join(''); + body.innerHTML = data.models.map(m=>`${m.id || m.name}${m.digest}`).join(''); }catch(e){ console.error(e); } }