diff --git a/client/src/views/SearchView.vue b/client/src/views/SearchView.vue index c30a149..0bdd931 100644 --- a/client/src/views/SearchView.vue +++ b/client/src/views/SearchView.vue @@ -72,8 +72,16 @@ >
- -
+ +
+ +
+
@@ -85,6 +93,12 @@ {{ result.title }}
+ + + + + Diagram + @@ -177,6 +191,11 @@ function viewDocument(result) { }) } +function handleImageError(event) { + // Hide broken image, show fallback icon instead + event.target.style.display = 'none' +} + // Watch for query changes from URL watch(() => route.query.q, (newQuery) => { searchQuery.value = newQuery || ''