diff --git a/app/views/users/_resources_list.html.erb b/app/views/users/_resources_list.html.erb
index f679f9c8c..a545038f1 100644
--- a/app/views/users/_resources_list.html.erb
+++ b/app/views/users/_resources_list.html.erb
@@ -16,7 +16,7 @@
<%= attach.quotes.nil? ? 0 : attach.quotes %>
<%= attach.downloads %>
<%= attach.author_id %>
- <%= number_to_human_size(attach.filesize) %>
+ <%= (number_to_human_size(attach.filesize)).gsub("ytes", "") %>
<%=User.find(attach.author_id).realname.blank? ? User.find(attach.author_id).nickname : User.find(attach.author_id).realname %>
<%= get_resource_type(attach.container_type)%>
<%= get_resource_origin(attach) %>
diff --git a/app/views/users/_user_import_resource_list.html.erb b/app/views/users/_user_import_resource_list.html.erb
index 57dac6ad0..af4f951e0 100644
--- a/app/views/users/_user_import_resource_list.html.erb
+++ b/app/views/users/_user_import_resource_list.html.erb
@@ -11,7 +11,7 @@
<%= get_resource_type(attach.container_type)%>
- <%= number_to_human_size(attach.filesize) %>
+ <%= (number_to_human_size(attach.filesize)).gsub("ytes", "") %>
<%=User.find(attach.author_id).realname.blank? ? User.find(attach.author_id).nickname : User.find(attach.author_id).realname %>
<%= format_date(attach.created_on) %>