search for standard sites pub-search.waow.tech
search zig blog atproto
11
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: link to publications in dashboard stats

Publications in "top publications" table now link to their basePath URL.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

zzstoatzz e9169b2c 3ed08c73

+6 -1
+2
site/dashboard.css
··· 100 100 } 101 101 .pub-row:last-child { border-bottom: none; } 102 102 .pub-name { color: #888; } 103 + a.pub-name { color: #1B7340; } 104 + a.pub-name:hover { color: #2a9d5c; } 103 105 .pub-count { color: #666; } 104 106 105 107 .timing-row {
+4 -1
site/dashboard.js
··· 47 47 pubs.forEach(p => { 48 48 const row = document.createElement('div'); 49 49 row.className = 'pub-row'; 50 - row.innerHTML = '<span class="pub-name">' + escapeHtml(p.name) + '</span><span class="pub-count">' + p.count + '</span>'; 50 + const nameHtml = p.basePath 51 + ? '<a href="https://' + escapeHtml(p.basePath) + '" target="_blank" class="pub-name">' + escapeHtml(p.name) + '</a>' 52 + : '<span class="pub-name">' + escapeHtml(p.name) + '</span>'; 53 + row.innerHTML = nameHtml + '<span class="pub-count">' + p.count + '</span>'; 51 54 el.appendChild(row); 52 55 }); 53 56 }