diff --git a/components/certif/List.vue b/components/certif/List.vue
index cfe1bf5cb24fcefddb0205bae97d6e7cf7903cdf..6b3e2a5c858b5893725f8c22ef269b3a8c234a20 100644
--- a/components/certif/List.vue
+++ b/components/certif/List.vue
@@ -131,6 +131,13 @@ export default {
 					if (index >= start && index < end) return true
 				})
 		}
+	},
+	watch: {
+		certifs: {
+			handler(n, o) {
+				this.search = ""
+			}
+		}
 	}
 }
 </script>