From 5a0ea5b650adedb115b14a7d8cabf54eb4278eb5 Mon Sep 17 00:00:00 2001 From: Martin Ledoux <32564108+ledouxm@users.noreply.github.com> Date: Thu, 12 Sep 2024 14:34:10 +0200 Subject: [PATCH] Mep (#35) * fix: display correct status * fix: edit banner spacings * feat: set edit banner sticky on mobile * fix: return arrow size * feat: set menu title position to sticky * fix: some styles * fix: simplify header * fix: show reports on 2 columns from 6 items * feat: add info messages * feat: display report item on 3 rows * fix: new colors * fix: informative message mb * fix: set printable colors * fix(pdf): set header sticky on desktop * fix: recipients textarea styles * fix: menu header padding and more * fix: remove * * fix: form labels * fix: date picker * fix: margins * gitignore * fix: pdf styles can now be italic and bold * fix: align tab title with content on firefox * fix: report search columns styles * fix: more report search styles --- .../frontend/src/components/ReportSearch.tsx | 22 ++++++++++--------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/packages/frontend/src/components/ReportSearch.tsx b/packages/frontend/src/components/ReportSearch.tsx index 594dc32a..5ce8432e 100644 --- a/packages/frontend/src/components/ReportSearch.tsx +++ b/packages/frontend/src/components/ReportSearch.tsx @@ -89,23 +89,25 @@ export const SearchResults = ({ search, hideEmpty }: { search: string; hideEmpty return (
- + {myReports.length ? ( - + Mes compte-rendus : ) : null} - {otherReports.length ? ( - - - Compte-rendus UDAP : - - - - ) : null} + + {otherReports.length ? ( + <> + + Compte-rendus UDAP : + + + + ) : null} +
);