window.open(issue.html_url)}>
+
+ {issue.title}
+
+
+ {issue.labels.map(
+ label =>
+ !semver.valid(semver.coerce(label.name)) && (
+
+ )
+ )}
+
+))`
+ display: flex;
+ padding: 5px 8px;
+ background: ${({ type }) => (type === 'even' ? 'initial' : '#f6f6f6')};
+
+ & > .title {
+ margin-right: 3px;
+ color: rgba(0, 0, 0, 0.65);
+ }
+
+ &:hover {
+ background: #f5faff;
+ cursor: pointer;
+
+ & > .title {
+ color: #40a9ff;
+ }
+ }
+`
+
+const ButtonsContainer = styled(
+ ({ issues, ...props }) =>
+ issues.length > MAX_ISSUES_PER_PAGE &&