0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-08 18:22:40 +00:00

Fix error listing

This commit is contained in:
G.Ambatte
2025-01-07 18:01:17 +13:00
parent 40d453bc7c
commit d9b599e814

View File

@@ -18,7 +18,7 @@ const ErrorBar = (props)=>{
const renderErrors = ()=>( const renderErrors = ()=>(
<ul> <ul>
{props.errors.map((err, idx)=>{ {props.errors.map((err, idx)=>{
<li key={idx}> return <li key={idx}>
Line {err.line} : {err.text}, '{err.type}' tag Line {err.line} : {err.text}, '{err.type}' tag
</li>; </li>;
})} })}