aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-03-02 18:02:58 -0800
committerBryan Newbold <bnewbold@robocracy.org>2019-03-02 18:02:58 -0800
commit1db7aac96c05ed03e6b94d174b3591cedb812d83 (patch)
tree2a7dfdaaf54f4541c7fee500b99eedf4b4242bdb
parent85be78efeadfccf1f12974b8aef6431dae44c34a (diff)
downloadfatcat-1db7aac96c05ed03e6b94d174b3591cedb812d83.tar.gz
fatcat-1db7aac96c05ed03e6b94d174b3591cedb812d83.zip
revert reference list <ol> changes
-rw-r--r--python/fatcat_web/templates/release_view.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/python/fatcat_web/templates/release_view.html b/python/fatcat_web/templates/release_view.html
index 805fb176..ad2daeb2 100644
--- a/python/fatcat_web/templates/release_view.html
+++ b/python/fatcat_web/templates/release_view.html
@@ -210,9 +210,10 @@
{% if release.refs != None and release.refs.size != 0 %}
<h3>References</h3>
<i>This release citing other releases</i>
-<ol class="ui list">
+{# see https://github.com/Semantic-Org/Semantic-UI/issues/2639 #}
+<ol>
{% for ref in release.refs %}
- <li {% if ref.key %}value="{{ ref.key }}"{% endif %}>
+ <li>
{% if ref.title %}
{{ ref.title }}
{% if ref.container_name %}{{ ref.container_name }}.{% endif %}