Skip to content

Commit

Permalink
wip: show identity *plus* hash
Browse files Browse the repository at this point in the history
  • Loading branch information
ca-d committed May 29, 2024
1 parent f939932 commit 78097a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
const sum = document.createElement('summary');
det.append(sum);
const d = db[tag][hash];
sum.textContent = tag + ' ' + (idDb[hash] || hash);
sum.textContent = tag + ' ' + idDb[hash] + ' (' + hash + ')';
det.addEventListener('toggle', () => {if (det.children.length < 2) det.append(...display(db[tag][hash]))})
elements.push(det);
}
Expand Down

0 comments on commit 78097a9

Please sign in to comment.