From 10f2920e110f9dcda6d185e2b5d487adbcd00dbe Mon Sep 17 00:00:00 2001 From: Jose Olarte III Date: Fri, 31 Oct 2025 18:34:54 +0800 Subject: [PATCH] feat(EntityGrid): display no results message for empty search queries Add contextual feedback message when a search term is entered but no matching entities are found. The message dynamically adjusts its wording based on whether searching for people or projects. --- src/components/EntityGrid.vue | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/components/EntityGrid.vue b/src/components/EntityGrid.vue index d7001abe..7e76093f 100644 --- a/src/components/EntityGrid.vue +++ b/src/components/EntityGrid.vue @@ -33,6 +33,15 @@ projects, and special entities with selection. * * @author Matthew Raymer */ +
+ “{{ searchTerm }}” doesn't match any + {{ entityType === "people" ? "people" : "projects" }}. Try a different + search. +
+