diff options
-rw-r--r-- | _layouts/default.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index 718ea9e..3e258d2 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -251,8 +251,8 @@ layout: table_wrappers var authors = commits.flatMap(x => [{...x.commit.author, ...x.author},{...x.commit.committer, ...x.committer}]).map(({date, ...keepAttrs}) => keepAttrs).filter((value, index, self) =>
index === self.findIndex((t) => (
- t.place === value.place && t.name === value.name
- ))
+ t.login === value.login
+ )) && value.login !== "web-flow"
);
document.getElementById('last-modified').textContent = "Last Modified: " + modified;
document.getElementById('contributors').textContent = authors.length + " "+ ( authors.length == 1? "Contributor" : "Contributors");
|