File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -126,15 +126,15 @@ export default function Inspect() {
126126 < h1 className = 'text-white font-bold' > Github</ h1 >
127127 </ div >
128128 { ! ! repo ?. owner ?. login && (
129- < h1 className = "text-sm font-bold mb-4" > Created by: { repo ?. owner ?. login } </ h1 >
129+ < h1 className = "text-sm font-bold mb-4" > Created by: < a href = { repo ?. owner ?. html_url } target = '_blank' > { repo ?. owner ?. login } </ a > </ h1 >
130130 ) }
131131 { ! ! contributors && ! ! contributors . length && (
132132 < >
133133 < h2 className = "text-sm font-semibold mb-2" > Contributors:</ h2 >
134134 < ul className = "list-disc ml-6" >
135135 { contributors . map ( ( contributor : any ) => (
136136 < li key = { contributor . id } className = "mb-1 text-sm" >
137- { contributor . login }
137+ < a href = { contributor . html_url } target = '_blank' > { contributor . login } </ a >
138138 </ li >
139139 ) ) }
140140 </ ul >
You can’t perform that action at this time.
0 commit comments