Commit eef541ee269f9363a161964af9193734d505418e
Fix typos
Charles Lehner committed on 8/3/2016, 10:57:27 PMParent: f87cf52b80cde6f8bec32cfd25ce0f2fce489fcb
Files changed
modules/git.js | changed |
modules/notifications.js | changed |
modules/git.js | ||
---|---|---|
@@ -54,9 +54,9 @@ | ||
54 | 54 | return h('a.timestamp', { |
55 | 55 | timestamp: msg.value.timestamp, |
56 | 56 | title: date, |
57 | 57 | href: '#'+msg.key |
58 | - }, human(date) | |
58 | + }, human(date)) | |
59 | 59 | } |
60 | 60 | |
61 | 61 | // a thead+tbody where the thead only is added when the first row is added |
62 | 62 | function tableRows(headerRow) { |
modules/notifications.js | ||
---|---|---|
@@ -33,9 +33,9 @@ | ||
33 | 33 | if (typeof id === 'object' && typeof id.link === 'string') id = id.link |
34 | 34 | sbot_get(id, function (err, msg) { |
35 | 35 | if (err && err.name == 'NotFoundError') cb(null, false) |
36 | 36 | else if (err) cb(err) |
37 | - else if (msg.content.type === 'issue' || msg.content.type === 'project') | |
37 | + else if (msg.content.type === 'issue' || msg.content.type === 'pull-request') | |
38 | 38 | isOurMsg(msg.content.repo || msg.content.project, cb) |
39 | 39 | else cb(err, msg.author in ourIds) |
40 | 40 | }) |
41 | 41 | } |
Built with git-ssb-web