aboutsummaryrefslogtreecommitdiff
path: root/lib/render.js
diff options
context:
space:
mode:
authorcel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519>2017-09-20 12:46:26 -1000
committercel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519>2017-09-22 10:59:45 -1000
commit6a3032b17d025bd77eb816648c49ffc01d7a8361 (patch)
tree7338384c30a4cce20624b59759668769471a3d0c /lib/render.js
parent9110e551179f40de7b323d7fd8cfcbd41bac8e8d (diff)
downloadpatchfoo-6a3032b17d025bd77eb816648c49ffc01d7a8361.tar.gz
patchfoo-6a3032b17d025bd77eb816648c49ffc01d7a8361.zip
Add missing column header
Diffstat (limited to 'lib/render.js')
-rw-r--r--lib/render.js11
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/render.js b/lib/render.js
index 9a3ad42..d7fe04f 100644
--- a/lib/render.js
+++ b/lib/render.js
@@ -403,11 +403,12 @@ Render.prototype.npmPackageMentions = function (links, cb) {
done(function (err, mentionEls) {
cb(null, h('table',
h('thead', h('tr',
- h('td', 'package'),
- h('td', 'version'),
- h('td', 'tag'),
- h('td', 'size'),
- h('td', 'tarball')
+ h('td', 'package'),
+ h('td', 'version'),
+ h('td', 'tag'),
+ h('td', 'size'),
+ h('td', 'tarball'),
+ h('td', 'readme')
)),
h('tbody', mentionEls)
))