File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,10 @@ export const Preview: FC = () => {
128
128
</ p >
129
129
< div className = "flex flex-col gap-2" >
130
130
{ output . parser_logs ?. map ( ( log , index ) => (
131
- < p key = { index } className = "-indent-4 pl-4 text-content-primary" >
131
+ < p
132
+ key = { index }
133
+ className = "-indent-4 pl-4 text-content-primary"
134
+ >
132
135
{ log . time } { log . level } : { log . msg } - { log . err }
133
136
</ p >
134
137
) ) }
@@ -208,7 +211,7 @@ const ErrorPane = () => {
208
211
< div
209
212
role = "alertdialog"
210
213
className = { cn (
211
- "absolute bottom-0 left-0 w-full" ,
214
+ "absolute bottom-0 left-0 flex max-h-[60%] w-full flex-col justify-start " ,
212
215
$errors . show && "h-auto" ,
213
216
) }
214
217
>
@@ -223,13 +226,10 @@ const ErrorPane = () => {
223
226
< div
224
227
aria-hidden = { ! $errors . show }
225
228
className = { cn (
226
- "flex h-full flex-col gap-6 bg-surface-secondary p-6" ,
229
+ "flex flex-col gap-6 overflow-y-scroll bg-surface-secondary p-6" ,
227
230
! $errors . show && "pointer-events-none h-0 p-0" ,
228
231
) }
229
232
>
230
- < p className = "font-semibold text-content-primary text-xl" >
231
- An error has occurred
232
- </ p >
233
233
< div className = "flex w-full flex-col gap-3" >
234
234
{ $errors . diagnostics . map ( ( diagnostic , index ) => (
235
235
< ErrorBlock diagnostic = { diagnostic } key = { index } />
You can’t perform that action at this time.
0 commit comments