diff options
author | cel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519> | 2017-09-30 23:57:22 -1000 |
---|---|---|
committer | cel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519> | 2017-09-30 23:57:22 -1000 |
commit | 3643ae071dc1e2ba89f67606bd267eb3e3f0f312 (patch) | |
tree | 51264f2f001c74c126af3ca57fe4645fe1a38817 | |
parent | 440274d19f302e0f293d56cba685e39e372cda12 (diff) | |
download | patchfoo-3643ae071dc1e2ba89f67606bd267eb3e3f0f312.tar.gz patchfoo-3643ae071dc1e2ba89f67606bd267eb3e3f0f312.zip |
Use table header elements for npm packages
-rw-r--r-- | lib/serve.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/serve.js b/lib/serve.js index 839725a..62e3629 100644 --- a/lib/serve.js +++ b/lib/serve.js @@ -1937,13 +1937,13 @@ Serve.prototype.npm = function (url) { ]), ph('table', [ ph('thead', ph('tr', [ - ph('td', 'publisher'), - ph('td', 'package'), - ph('td', 'version'), - ph('td', 'tag'), - ph('td', 'size'), - ph('td', 'tarball'), - ph('td', 'readme') + ph('th', 'publisher'), + ph('th', 'package'), + ph('th', 'version'), + ph('th', 'tag'), + ph('th', 'size'), + ph('th', 'tarball'), + ph('th', 'readme') ])), ph('tbody', pull( self.app.blobMentions({ |