aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-03-02 17:24:52 -0800
committerBryan Newbold <bnewbold@robocracy.org>2019-03-02 17:24:52 -0800
commit59c486662718de2a86cc0c5987f78585620bc83f (patch)
tree9a5efbb181a59452829ad5097c7840062e3a2367
parenteb1c59c6b234938d7ee1cbfe77b8bd6e19ab8515 (diff)
downloadfatcat-59c486662718de2a86cc0c5987f78585620bc83f.tar.gz
fatcat-59c486662718de2a86cc0c5987f78585620bc83f.zip
fix long contrib list attrib index width
-rw-r--r--python/fatcat_web/templates/release_view.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_web/templates/release_view.html b/python/fatcat_web/templates/release_view.html
index ca09f1b9..684c71ab 100644
--- a/python/fatcat_web/templates/release_view.html
+++ b/python/fatcat_web/templates/release_view.html
@@ -90,7 +90,7 @@
<table class="ui basic compact fixed table">
<tbody>
{% for contrib in release.contribs %}
- <tr><td class="one wide">{% if contrib.index or contrib.index == 0 %} {{ contrib.index + 1 }}{% endif %}
+ <tr><td class="collapsing">{% if contrib.index or contrib.index == 0 %} {{ contrib.index + 1 }}{% endif %}
<td>
{% if contrib.creator_id %}
<a href="/creator/{{contrib.creator_id}}">{{ contrib.raw_name or 'unknown' }}</a>