File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
browser-extension/tests/playground Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -437,18 +437,23 @@ export const ClaudePrototype = () => {
437437 href = { draft . url }
438438 className = 'hover:underline truncate max-w-[28ch]'
439439 >
440- #{ draft . number } { draft . repoSlug }
440+ { draft . repoSlug . startsWith ( 'r/' ) ? draft . repoSlug :
441+ `#${ draft . number } ${ draft . repoSlug } `
442+ }
441443 </ a >
442444 </ div >
443445
444446 { /* Title + snippet */ }
445447 < div className = 'text-sm truncate' >
446448 < span className = 'font-medium' > { draft . title } </ span >
447- < span className = 'text-gray-500' > — { draft . content . substring ( 0 , 60 ) } …</ span >
449+ </ div >
450+ < div className = 'text-sm truncate' >
451+ < span className = 'text-gray-500' > { draft . content . substring ( 0 , 60 ) } …</ span >
448452 </ div >
449453
450454 { /* Signals row (hidden on small screens) */ }
451455 < div className = 'hidden sm:flex items-center gap-2' >
456+
452457 { draft . linkCount > 0 && (
453458 < span className = 'inline-flex items-center gap-1 px-1.5 py-0.5 rounded text-xs bg-blue-50 text-blue-700' >
454459 < Link className = 'w-3 h-3' />
You can’t perform that action at this time.
0 commit comments