Commit 6a3797e542f129dc4d1616731221a95ee16a4b3b
1 parent
97b7ed95
Exists in
master
and in
1 other branch
Fixed User Attributes partials
Showing
3 changed files
with
11 additions
and
8 deletions
Show diff stats
app/views/errs/show.html.haml
... | ... | @@ -51,7 +51,7 @@ |
51 | 51 | %li= link_to 'Summary', '#summary', :rel => 'summary', :class => 'button' |
52 | 52 | %li= link_to 'Backtrace', '#backtrace', :rel => 'backtrace', :class => 'button' |
53 | 53 | - if @notice.user_attributes.present? |
54 | - %li= link_to 'Application User', '#user_attributes', :rel => 'user_attributes', :class => 'button' | |
54 | + %li= link_to 'User Details', '#user_attributes', :rel => 'user_attributes', :class => 'button' | |
55 | 55 | %li= link_to 'Environment', '#environment', :rel => 'environment', :class => 'button' |
56 | 56 | %li= link_to 'Parameters', '#params', :rel => 'params', :class => 'button' |
57 | 57 | %li= link_to 'Session', '#session', :rel => 'session', :class => 'button' |
... | ... | @@ -67,7 +67,7 @@ |
67 | 67 | |
68 | 68 | - if @notice.user_attributes.present? |
69 | 69 | #user_attributes |
70 | - %h3 User | |
70 | + %h3 User Details | |
71 | 71 | = render 'notices/user_attributes', :user => @notice.user_attributes |
72 | 72 | |
73 | 73 | #environment | ... | ... |