diff --git a/app/views/notifications/index.html.haml b/app/views/notifications/index.html.haml
index 81e88c010..d8d9b25c5 100644
--- a/app/views/notifications/index.html.haml
+++ b/app/views/notifications/index.html.haml
@@ -15,10 +15,13 @@
- if can? :read, n
%tr
%td
- - if n.read
- = link_to n.sender, member_path(n.sender)
+ - if n.sender.present?
+ - if n.read
+ = link_to n.sender, member_path(n.sender)
+ - else
+ %strong= link_to n.sender, member_path(n.sender)
- else
- %strong= link_to n.sender, member_path(n.sender)
+ *deleted member*
%td
- if n.read
= link_to n.subject, notification_path(n)