diff options
author | cel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519> | 2017-09-20 12:46:26 -1000 |
---|---|---|
committer | cel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519> | 2017-09-22 10:59:45 -1000 |
commit | 6a3032b17d025bd77eb816648c49ffc01d7a8361 (patch) | |
tree | 7338384c30a4cce20624b59759668769471a3d0c | |
parent | 9110e551179f40de7b323d7fd8cfcbd41bac8e8d (diff) | |
download | patchfoo-6a3032b17d025bd77eb816648c49ffc01d7a8361.tar.gz patchfoo-6a3032b17d025bd77eb816648c49ffc01d7a8361.zip |
Add missing column header
-rw-r--r-- | lib/render.js | 11 |
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) )) |