Skip to content
Snippets Groups Projects
Commit 59b5bfff authored by Phil Hughes's avatar Phil Hughes
Browse files

Uses not when checking for system note

parent ad57a94a
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -18,9 +18,9 @@
= time_ago_with_tooltip(note.created_at, placement: 'bottom', html_class: 'note-created-ago')
.note-actions
- access = note.project.team.human_max_access(note.author.id)
- if access and !note.system
- if access and not note.system
%span.note-role.hidden-xs= access
- if current_user and !note.system
- if current_user and not note.system
= link_to '#', title: 'Award Emoji', class: 'note-action-button note-emoji-button js-add-award js-note-emoji', data: { position: 'right' } do
= icon('spinner spin')
= icon('smile-o')
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment