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 4aeb3f7 commit 987c7c8Copy full SHA for 987c7c8
src/DeployPage.js
@@ -224,7 +224,7 @@ class DeployTable extends React.Component {
224
225
const usersByLogin = new Map();
226
for (const commit of commits) {
227
- if (usersByLogin.has(commit.author.login)) {
+ if (!commit.author || usersByLogin.has(commit.author.login)) {
228
continue;
229
}
230
usersByLogin.set(commit.author.login, commit.author);
0 commit comments