mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-09-25 11:16:43 +02:00
Add back scrolling to ExceptionTraceModal (#2473)
This commit is contained in:
@@ -44,7 +44,7 @@ export function Modal({
|
||||
return (
|
||||
<div
|
||||
onMouseDown={handleMouseDown}
|
||||
className={`fixed inset-0 bg-black bg-opacity-25 backdrop-blur-sm
|
||||
className={`fixed inset-0 bg-black bg-opacity-25 backdrop-blur-sm h-full
|
||||
flex items-center justify-center z-50 transition-opacity duration-300 ease-in-out`}
|
||||
>
|
||||
<div
|
||||
@@ -72,7 +72,7 @@ export function Modal({
|
||||
</div>
|
||||
)}
|
||||
|
||||
<div className="flex w-full flex-col justify-stretch">
|
||||
<div className="w-full flex flex-col h-full justify-stretch">
|
||||
{title && (
|
||||
<>
|
||||
<div className="flex mb-4">
|
||||
|
@@ -18,7 +18,7 @@ export default function ExceptionTraceModal({
|
||||
title="Full Exception Trace"
|
||||
onOutsideClick={onOutsideClick}
|
||||
>
|
||||
<div className="overflow-y-auto mb-6">
|
||||
<div className="overflow-y-auto include-scrollbar pr-3 h-full mb-6">
|
||||
<div className="mb-6">
|
||||
{!copyClicked ? (
|
||||
<div
|
||||
|
Reference in New Issue
Block a user