diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2021-08-12 16:45:21 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2021-08-12 16:45:21 -0700 |
commit | 043efd0243ba5ce8e03c817f7e49290d98dab8b1 (patch) | |
tree | 2d0f571771651dc94aecd1c692e0265972861f99 /python/fatcat_web/templates/stats.html | |
parent | b63c92af5c8c2ab9a3927cab33052df96821351b (diff) | |
download | fatcat-043efd0243ba5ce8e03c817f7e49290d98dab8b1.tar.gz fatcat-043efd0243ba5ce8e03c817f7e49290d98dab8b1.zip |
web: fix stats rowspan (oops)
Diffstat (limited to 'python/fatcat_web/templates/stats.html')
-rw-r--r-- | python/fatcat_web/templates/stats.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_web/templates/stats.html b/python/fatcat_web/templates/stats.html index afd5b598..654cd0da 100644 --- a/python/fatcat_web/templates/stats.html +++ b/python/fatcat_web/templates/stats.html @@ -32,7 +32,7 @@ You can also fetch these numbers <a href="./stats.json">as JSON</a>. <td>On web, not in Keepers</td> <td class="right aligned">{{ "{:,}".format(stats.papers.in_web_not_kbart) }}</td> - <tr style="padding-top:0px;"><td rowspan="2" class="active top aligned center aligned"><b>Releases</b></td> + <tr style="padding-top:0px;"><td rowspan="1" class="active top aligned center aligned"><b>Releases</b></td> <td>Total</td> <td class="right aligned">{{ "{:,}".format(stats.release.total) }}</td> |