From 1a8a91719ae386f938b6993b685add9a66a9d186 Mon Sep 17 00:00:00 2001 From: Jen Jones Arnesen Date: Thu, 21 Dec 2023 14:29:15 +0100 Subject: [PATCH] chore: dont limit height for replies. Parent scroll will handle scrolling --- .../InterpretationModal/InterpretationThread.js | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/components/Interpretations/InterpretationModal/InterpretationThread.js b/src/components/Interpretations/InterpretationModal/InterpretationThread.js index 47dc74e20..fd7b52e00 100644 --- a/src/components/Interpretations/InterpretationModal/InterpretationThread.js +++ b/src/components/Interpretations/InterpretationModal/InterpretationThread.js @@ -35,7 +35,12 @@ const InterpretationThread = ({ ) return ( -
+
{moment(fromServerDate(interpretation.created)).format('LLL')} @@ -85,6 +90,10 @@ const InterpretationThread = ({ scroll-behavior: smooth; } + .dashboard .thread { + overflow-y: hidden; + } + .container { position: relative; overflow: auto; @@ -93,6 +102,10 @@ const InterpretationThread = ({ flex-direction: column; } + .container.dashboard { + max-height: none; + } + .container.fetching::before { content: ''; position: absolute;