diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-03-02 17:25:48 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-03-02 17:25:48 -0800 |
commit | 2235e696f96f761cfecacb7894c2cc78fc296da2 (patch) | |
tree | dde3ce5793ad0cc0ea90423e78d181404371eec4 /python/fatcat_web/templates/file_view.html | |
parent | 1691ff26ff3a33d619fbc1bd2983a9b07dbdbabc (diff) | |
download | fatcat-2235e696f96f761cfecacb7894c2cc78fc296da2.tar.gz fatcat-2235e696f96f761cfecacb7894c2cc78fc296da2.zip |
remove redundant bytes from file view
Diffstat (limited to 'python/fatcat_web/templates/file_view.html')
-rw-r--r-- | python/fatcat_web/templates/file_view.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_web/templates/file_view.html b/python/fatcat_web/templates/file_view.html index 7f516e01..780b5bc0 100644 --- a/python/fatcat_web/templates/file_view.html +++ b/python/fatcat_web/templates/file_view.html @@ -64,7 +64,7 @@ No known public URL, mirror, or archive for this file. {% if file.size != None %} <div class="ui segment attached"> - <p><b>Size</b> {{ file.size|filesizeformat }} (bytes) + <p><b>Size</b> {{ file.size|filesizeformat }} </div> {% endif %} |