From cff3ebf9ffbf51a543b2a2bc6f7ed92720aa8e68 Mon Sep 17 00:00:00 2001 From: Simon Malesys <simon.malesys@pasteur.fr> Date: Mon, 16 Dec 2024 16:53:55 +0100 Subject: [PATCH] Fix the display of the filter chips in case of long values with spaces --- src/client/components/AdvancedSearch.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/client/components/AdvancedSearch.vue b/src/client/components/AdvancedSearch.vue index 2d30e9a0..6f6262fc 100644 --- a/src/client/components/AdvancedSearch.vue +++ b/src/client/components/AdvancedSearch.vue @@ -317,6 +317,7 @@ function removeFilter(filterChip: FilterChip): void { max-width: 150px; overflow: hidden; text-overflow: ellipsis; + white-space: nowrap; } .filter-chip .remove-button { -- GitLab