We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fadde58 commit 0640510Copy full SHA for 0640510
src/routes/Commits/routes/List/index.ts
@@ -11,6 +11,7 @@ export const List: RouteComponent = ({ dom, history, github }) => {
11
const commitListItems$ =
12
commits$.map(commits =>
13
commits
14
+ .filter(commit => !commit.commit.message.startsWith('Merge'))
15
.map(commit => CommitListItem({ dom, commit$: xs.of(commit) }))
16
);
17
const commitListItemDoms$ =
0 commit comments