Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions client/src/features/logsDisplay/LogsModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -259,13 +259,13 @@ function TabbedLogs({ data, defaultTab }: TabbedLogsProps) {
</Nav>
<TabContent
activeTab={activeTab}
className={cx("flex-1", "overflow-auto")}
className={cx("flex-1", "overflow-hidden")}
>
{sortedLogs.map(({ tab, content }) => (
<TabPane key={tab} tabId={tab}>
<div className={cx("d-flex", "flex-column")}>
<pre
className="overflow-visible"
className="overflow-auto"
// eslint-disable-next-line spellcheck/spell-checker
style={{ whiteSpace: "pre-line", maxHeight: "60vh" }}
ref={activeTab === tab ? preRef : undefined}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ function SessionStatusV2Text({
<div className={cx("d-flex", "align-items-center", "gap-2")}>
<Clock fontSize={16} className="flex-shrink-0" />
<span>
Paused
Paused{" "}
<TimeCaption datetime={hibernationTimestamp} enableTooltip noCaption />
</span>
</div>
Expand Down
Loading