From 87430e421bfcc027af7c2be98c1a4f699895e189 Mon Sep 17 00:00:00 2001 From: Hina Shah Date: Fri, 10 Nov 2023 08:36:45 -0500 Subject: [PATCH 1/4] BUG: 0 displayed when answer explorer opened --- src/pages/answer/resultsTable/ResultExplorer.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/answer/resultsTable/ResultExplorer.jsx b/src/pages/answer/resultsTable/ResultExplorer.jsx index 6d5609e5..2db84cf0 100644 --- a/src/pages/answer/resultsTable/ResultExplorer.jsx +++ b/src/pages/answer/resultsTable/ResultExplorer.jsx @@ -350,7 +350,7 @@ export default function ResultExplorer({ answerStore }) { elevation={3} >
Answer Explorer
- {answerStore.showNodePruneSlider && ( + { Boolean(answerStore.showNodePruneSlider) && ( Date: Wed, 15 Nov 2023 16:38:35 -0500 Subject: [PATCH 2/4] bug: allowing footer to always be visible --- src/pages/answer/leftDrawer/leftDrawer.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/answer/leftDrawer/leftDrawer.css b/src/pages/answer/leftDrawer/leftDrawer.css index ef23a6db..13b66432 100644 --- a/src/pages/answer/leftDrawer/leftDrawer.css +++ b/src/pages/answer/leftDrawer/leftDrawer.css @@ -3,4 +3,5 @@ width: 220px; position: absolute; margin-top: 14px; + z-index: -1; } \ No newline at end of file From ba640e5383336511d085c78a8eb93a830d162cb9 Mon Sep 17 00:00:00 2001 From: Hina Shah Date: Wed, 15 Nov 2023 16:41:11 -0500 Subject: [PATCH 3/4] STYLE: using footer html tag --- src/components/footer/Footer.jsx | 4 ++-- src/components/footer/footer.css | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/components/footer/Footer.jsx b/src/components/footer/Footer.jsx index 3233f539..0556423d 100644 --- a/src/components/footer/Footer.jsx +++ b/src/components/footer/Footer.jsx @@ -4,7 +4,7 @@ import './footer.css'; export default function Footer() { return ( -
+

ROBOKOP is a joint creation of RENCI{' '} and CoVar LLC. Early development was{' '} @@ -14,6 +14,6 @@ export default function Footer() { ODSS.{' '} Terms of Service.

-
+ ); } diff --git a/src/components/footer/footer.css b/src/components/footer/footer.css index 39f49fac..6a8f1d67 100644 --- a/src/components/footer/footer.css +++ b/src/components/footer/footer.css @@ -1,11 +1,12 @@ -.footer { +footer { position: absolute; bottom: 0; width: 100%; + height: auto; color: #5e5e5e; background-color: #f5f7fa; } -.footer p { +footer p { font-size: 1.25em; margin-top: 5px; text-align: center; From 8704170f0d453bcce6680d74408199ffa2ca9fdc Mon Sep 17 00:00:00 2001 From: Hina Shah Date: Thu, 16 Nov 2023 09:57:38 -0500 Subject: [PATCH 4/4] STYLE: fix spacing --- src/pages/answer/resultsTable/ResultExplorer.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/answer/resultsTable/ResultExplorer.jsx b/src/pages/answer/resultsTable/ResultExplorer.jsx index 2db84cf0..1280519a 100644 --- a/src/pages/answer/resultsTable/ResultExplorer.jsx +++ b/src/pages/answer/resultsTable/ResultExplorer.jsx @@ -350,7 +350,7 @@ export default function ResultExplorer({ answerStore }) { elevation={3} >
Answer Explorer
- { Boolean(answerStore.showNodePruneSlider) && ( + { Boolean(answerStore.showNodePruneSlider) && (