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.

fix: revert author name click to link to bsky profile

Clicking the handle in results goes to their bsky profile (original
behavior). Author filtering is done via @handle in the search box.

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

zzstoatzz 12277d0a 79c93991

+3 -13
+3 -13
site/index.html
··· 248 248 color: var(--text-dim); 249 249 } 250 250 251 - .author-name a, .author-name .author-link { 251 + .author-name a { 252 252 color: var(--text-secondary); 253 253 text-decoration: none; 254 254 } 255 255 256 - .author-name a:hover, .author-name .author-link:hover { 256 + .author-name a:hover { 257 257 color: #2a9d5c; 258 - } 259 - 260 - .author-name .external-link { 261 - font-size: 10px; 262 - margin-left: 2px; 263 - opacity: 0.5; 264 - } 265 - 266 - .author-name .external-link:hover { 267 - opacity: 1; 268 258 } 269 259 270 260 .entity-type { ··· 1118 1108 if (!handle) return; 1119 1109 const nameSpan = el.querySelector('.author-name'); 1120 1110 if (!nameSpan || nameSpan.innerHTML) return; // already populated 1121 - nameSpan.innerHTML = `<span class="author-link" onclick="setAuthor('${escapeHtml(did)}')" style="cursor:pointer">@${escapeHtml(handle)}</span><a href="https://bsky.app/profile/${escapeHtml(did)}" target="_blank" class="external-link" onclick="event.stopPropagation()" title="view on bsky">\u2197</a> · `; 1111 + nameSpan.innerHTML = `<a href="https://bsky.app/profile/${escapeHtml(did)}" target="_blank">@${escapeHtml(handle)}</a> · `; 1122 1112 }); 1123 1113 } 1124 1114