Skip to content

Commit f5c6004

Browse files
committed
fix 500 on recently edited list page
1 parent 32af17c commit f5c6004

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

app/views/cards/user/_recent_activity.html.erb

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
render partial: 'content/list/list',
55
locals: {
66
title: defined?(title) ? title : 'Recent creations',
7-
content_list: content_list
7+
content_list: content_list,
8+
content_type: Character
89
}
910
%>
1011
</div>

app/views/content/display/_floating_action_buttons.html.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
class: 'btn-floating btn-small halfway-fab waves-effect waves-light white delete left',
5757
style: 'z-index: 500;',
5858
method: :delete,
59-
data: { confirm: "Are you sure? Deleting this #{@content.class.name.downcase} cannot be undone!" } do %>
59+
data: { confirm: "Are you sure? This will delete this entire #{@content.class.name.downcase}!" } do %>
6060
<i class="material-icons red-text text-lighten-2">delete</i>
6161
<% end %>
6262
<% end %>

0 commit comments

Comments
 (0)