We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29da42c commit 370b803Copy full SHA for 370b803
webapp/src/components/sidebar_right/github_items.tsx
@@ -281,7 +281,18 @@ function GithubItems(props: GithubItemsProps) {
281
<CalendarIcon size={16}/> {'Opened '} {formatTimeSince(item.created_at)} {' ago'}
282
</>
283
)}
284
- {userName && ' by ' + userName}
+ {userName && (
285
+ <>
286
+ {' by '}
287
+ <a
288
+ href={`https://github.com/${userName}`}
289
+ target='_blank'
290
+ rel='noopener noreferrer'
291
+ >
292
+ {userName}
293
+ </a>
294
+ </>
295
+ )}
296
{(item.created_at || userName) && '.'}
297
{milestone}
298
{item.reason ? (<>
0 commit comments