From a2bb70aaecaf4f6d261809cd48cd44ee95159d26 Mon Sep 17 00:00:00 2001 From: staticGuru Date: Fri, 6 Oct 2023 16:51:35 +0530 Subject: [PATCH 1/2] Source selection overflow issues --- frontend/src/Navigation.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/Navigation.tsx b/frontend/src/Navigation.tsx index 366fade9..3dd8bade 100644 --- a/frontend/src/Navigation.tsx +++ b/frontend/src/Navigation.tsx @@ -227,11 +227,11 @@ export default function Navigation() {
setIsDocsListOpen(!isDocsListOpen)} > {selectedDocs && ( -

+

{selectedDocs.name} {selectedDocs.version}

)} From 0a8ba068c4b361d6f676c979539c0c95e3a6e60e Mon Sep 17 00:00:00 2001 From: staticGuru Date: Fri, 6 Oct 2023 17:04:25 +0530 Subject: [PATCH 2/2] remove the unwanted whitespace --- frontend/src/Navigation.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/Navigation.tsx b/frontend/src/Navigation.tsx index 3dd8bade..4778976b 100644 --- a/frontend/src/Navigation.tsx +++ b/frontend/src/Navigation.tsx @@ -231,7 +231,7 @@ export default function Navigation() { onClick={() => setIsDocsListOpen(!isDocsListOpen)} > {selectedDocs && ( -

+

{selectedDocs.name} {selectedDocs.version}

)}