diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-03-02 17:24:52 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-03-02 17:24:52 -0800 |
commit | 59c486662718de2a86cc0c5987f78585620bc83f (patch) | |
tree | 9a5efbb181a59452829ad5097c7840062e3a2367 /python/fatcat_web | |
parent | eb1c59c6b234938d7ee1cbfe77b8bd6e19ab8515 (diff) | |
download | fatcat-59c486662718de2a86cc0c5987f78585620bc83f.tar.gz fatcat-59c486662718de2a86cc0c5987f78585620bc83f.zip |
fix long contrib list attrib index width
Diffstat (limited to 'python/fatcat_web')
-rw-r--r-- | python/fatcat_web/templates/release_view.html | 2 |
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> |