diff options
-rw-r--r-- | app/views/request/_bubble.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/request/_bubble.rhtml b/app/views/request/_bubble.rhtml index b44ea692e..25bff29b3 100644 --- a/app/views/request/_bubble.rhtml +++ b/app/views/request/_bubble.rhtml @@ -16,7 +16,7 @@ <strong><%= h a.display_filename %></strong> <!-- <%= link_to h(a.display_filename), attachment_url %> --> <br> - <%= a.body.size / 1024 %>K + <%= (a.body.size > 1024 * 1024) ? ((a.body.size / 1024 / 1024).to_s + 'M') : ((a.body.size / 1024).to_s + 'K') %> <%= link_to "Download", attachment_url %> <!-- (<%= a.content_type %>) --> </p> |