diff --git a/application/templates/welcome_menu.html b/application/templates/welcome_menu.html
index 3f914b368..d0b5fd9de 100644
--- a/application/templates/welcome_menu.html
+++ b/application/templates/welcome_menu.html
@@ -38,7 +38,7 @@ padding:0;
Request Management
SELECT UserRequest
UI:WelcomeMenu:MyCalls
-SELECT UserRequest AS i WHERE i.caller_id = :current_contact_id
+SELECT UserRequest AS i WHERE i.caller_id = :current_contact_id AND status NOT IN ("closed", "resolved")
@@ -47,7 +47,7 @@ padding:0;
Incident Management
SELECT Incident
UI:WelcomeMenu:MyIncidents
-SELECT Incident AS i WHERE i.agent_id = :current_contact_id
+SELECT Incident AS i WHERE i.agent_id = :current_contact_id AND status NOT IN ("closed", "resolved")
|