Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions webapp/src/components/link_tooltip/link_tooltip.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ export const LinkTooltip = ({href, connected, show, theme}) => {
if (data) {
let date = new Date(data.created_at);
date = date.toDateString();

return (
<div className='github-tooltip'>
<div
Expand Down Expand Up @@ -156,9 +157,9 @@ export const LinkTooltip = ({href, connected, show, theme}) => {
key={idx}
className='label mr-1'
title={label.description}
style={{backgroundColor: '#' + label.color}}
style={{backgroundColor: '#' + label.color, color: getLabelFontColor(label.color)}}
>
<span style={{color: getLabelFontColor(label.color)}}>{label.name}</span>
<span>{label.name}</span>
</span>
);
})}
Expand Down