Correct my own spelling mistake
This commit is contained in:
parent
8b99ae9cb6
commit
e2b16ab16f
3 changed files with 3 additions and 3 deletions
|
|
@ -24,7 +24,7 @@
|
||||||
.stream_element{:data=>{:guid => note.id}, :class => "#{note.unread ? 'unread' : ''}"}
|
.stream_element{:data=>{:guid => note.id}, :class => "#{note.unread ? 'unread' : ''}"}
|
||||||
- if note.type == "Notifications::StartedSharing" && contact = current_user.contact_for(note[:target])
|
- if note.type == "Notifications::StartedSharing" && contact = current_user.contact_for(note[:target])
|
||||||
.right
|
.right
|
||||||
= aspect_memberhip_dropdown(contact, note[:target], 'left')
|
= aspect_membership_dropdown(contact, note[:target], 'left')
|
||||||
|
|
||||||
%span.from
|
%span.from
|
||||||
= notification_message_for(note)
|
= notification_message_for(note)
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
- unless person == current_user.person
|
- unless person == current_user.person
|
||||||
- contact = current_user.contacts.find_by_person_id(person.id)
|
- contact = current_user.contacts.find_by_person_id(person.id)
|
||||||
- contact ||= Contact.new(:person => person)
|
- contact ||= Contact.new(:person => person)
|
||||||
= aspect_memberhip_dropdown(contact, person, 'left')
|
= aspect_membership_dropdown(contact, person, 'left')
|
||||||
-else
|
-else
|
||||||
= t('people.person.thats_you')
|
= t('people.person.thats_you')
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
= aspect_memberhip_dropdown(@contact, @person, 'left')
|
= aspect_membership_dropdown(@contact, @person, 'left')
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue