fixed #881
This commit is contained in:
parent
183c840108
commit
af14fa76a1
3 changed files with 4 additions and 4 deletions
|
|
@ -35,7 +35,7 @@
|
|||
%br
|
||||
%hr{:style=>"width:300px;"}
|
||||
|
||||
-if (contact && !contact.pending?) || person == current_user.person || @incoming_request
|
||||
-if (contact.persisted? && !contact.pending?) || person == current_user.person || @incoming_request
|
||||
%ul#profile_information
|
||||
%li
|
||||
- unless person.profile.bio.blank?
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
.span-8.append-1.last
|
||||
= render :partial => 'people/profile_sidebar', :locals => {:person => @person, :contact => @contact }
|
||||
|
||||
- if @contact && @contacts_of_contact.count > 0
|
||||
- if @contact.persisted? && @contacts_of_contact.count > 0
|
||||
.span-8.last
|
||||
%hr{:style=>"width:300px;"}
|
||||
.section.contact_pictures
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
DIASPORA*
|
||||
|
||||
#author_info.profile
|
||||
- unless @contact || current_user.person == @person
|
||||
- unless @contact.persisted? || current_user.person == @person
|
||||
.right
|
||||
= link_to "start sharing",
|
||||
{:controller => "contact",
|
||||
|
|
@ -24,7 +24,7 @@
|
|||
.description
|
||||
= @person.diaspora_handle
|
||||
|
||||
- unless @contact || current_user.person == @person
|
||||
- unless @contact.persisted? || current_user.person == @person
|
||||
- if @incoming_request
|
||||
.floating
|
||||
%h3
|
||||
|
|
|
|||
Loading…
Reference in a new issue