the build was failing for a reason
This commit is contained in:
parent
09756c17c1
commit
e7b4d4e494
1 changed files with 2 additions and 2 deletions
|
|
@ -61,11 +61,11 @@
|
||||||
.description
|
.description
|
||||||
- if !@person.profile.tag_string.blank?
|
- if !@person.profile.tag_string.blank?
|
||||||
= @person.profile.format_tags(@person.profile.tag_string)
|
= @person.profile.format_tags(@person.profile.tag_string)
|
||||||
- if @person == current_user.person
|
- if user_signed_in? && @person == current_user.person
|
||||||
%span.hover_edit
|
%span.hover_edit
|
||||||
= link_to t('.edit'), edit_profile_path
|
= link_to t('.edit'), edit_profile_path
|
||||||
- else
|
- else
|
||||||
- if @person == current_user.person
|
- if user_signed_in? && @person == current_user.person
|
||||||
%i
|
%i
|
||||||
= t('.you_have_no_tags')
|
= t('.you_have_no_tags')
|
||||||
%span.add_tags
|
%span.add_tags
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue