File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
frontend/src/components/editor/output Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -406,7 +406,7 @@ export const MarimoErrorOutput = ({
406
406
407
407
if ( exceptionErrors . length > 0 ) {
408
408
messages . push (
409
- < div key = "exception" >
409
+ < ul key = "exception" >
410
410
{ exceptionErrors . map ( ( error , idx ) => (
411
411
< li className = "my-2" key = { `exception-${ idx } ` } >
412
412
{ error . raising_cell == null ? (
@@ -431,13 +431,13 @@ export const MarimoErrorOutput = ({
431
431
</ Tip >
432
432
) }
433
433
{ cellId && < AutoFixButton errors = { exceptionErrors } cellId = { cellId } /> }
434
- </ div > ,
434
+ </ ul > ,
435
435
) ;
436
436
}
437
437
438
438
if ( strictExceptionErrors . length > 0 ) {
439
439
messages . push (
440
- < div key = "strict-exception" >
440
+ < ul key = "strict-exception" >
441
441
{ strictExceptionErrors . map ( ( error , idx ) => (
442
442
< li className = "my-2" key = { `strict-exception-${ idx } ` } >
443
443
{ error . blamed_cell == null ? (
@@ -458,7 +458,7 @@ export const MarimoErrorOutput = ({
458
458
? "Ensure that the referenced cells define the required variables, or turn off strict execution."
459
459
: "Something is wrong with your declarations. Fix any discrepancies, or turn off strict execution." }
460
460
</ Tip >
461
- </ div > ,
461
+ </ ul > ,
462
462
) ;
463
463
}
464
464
You can’t perform that action at this time.
0 commit comments