We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1a4b8c commit a474d68Copy full SHA for a474d68
lib/views/issueish-list-view.js
@@ -67,6 +67,7 @@ export default class IssueishListView extends React.Component {
67
<span className="github-IssueishList-item github-IssueishList-item--number">
68
#{issueish.getNumber()}
69
</span>
70
+ <progress class='github-IssueishList-item github-IssueishList-item--progress' value={Math.random() * 10} max='10'></progress>
71
{this.renderStatusSummary(issueish.getStatusCounts())}
72
<Timeago
73
time={issueish.getCreatedAt()}
styles/issueish-list-view.less
@@ -63,6 +63,10 @@
63
text-align: center;
64
}
65
66
+ &--progress {
+ width: 40px;
+ }
+
&-more {
0 commit comments