diff --git a/static/app.js b/static/app.js index 522d18e..0d8c7e1 100644 --- a/static/app.js +++ b/static/app.js @@ -409,11 +409,12 @@ function renderHistory() { $('#history-empty').hidden = rows.length > 0; $('#history-body').innerHTML = rows.map((g) => { const auth = g.authenticity; - // A dot rather than repeating the full banner text — the row is - // already tight, and opening the card gives the real explanation. - const authDot = (auth && auth.flag !== 'none') - ? `` + // A real badge, not just a dot — this is the thing that has to catch + // the eye scanning the home-screen list, not something you only notice + // once you already suspect a card and go looking for it. + const authBadge = (auth && auth.flag !== 'none') + ? `${ + esc(auth.flag === 'likely_not_genuine' ? 'Possibly fake' : 'Verify')}` : ''; return `