Skip to content

Commit 0640510

Browse files
committed
Filter out merge commits
1 parent fadde58 commit 0640510

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/routes/Commits/routes/List/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export const List: RouteComponent = ({ dom, history, github }) => {
1111
const commitListItems$ =
1212
commits$.map(commits =>
1313
commits
14+
.filter(commit => !commit.commit.message.startsWith('Merge'))
1415
.map(commit => CommitListItem({ dom, commit$: xs.of(commit) }))
1516
);
1617
const commitListItemDoms$ =

0 commit comments

Comments
 (0)