Skip to content

Commit a474d68

Browse files
committed
Add progress to PR list
1 parent c1a4b8c commit a474d68

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

lib/views/issueish-list-view.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ export default class IssueishListView extends React.Component {
6767
<span className="github-IssueishList-item github-IssueishList-item--number">
6868
#{issueish.getNumber()}
6969
</span>
70+
<progress class='github-IssueishList-item github-IssueishList-item--progress' value={Math.random() * 10} max='10'></progress>
7071
{this.renderStatusSummary(issueish.getStatusCounts())}
7172
<Timeago
7273
time={issueish.getCreatedAt()}

styles/issueish-list-view.less

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@
6363
text-align: center;
6464
}
6565

66+
&--progress {
67+
width: 40px;
68+
}
69+
6670
}
6771

6872
&-more {

0 commit comments

Comments
 (0)