Skip to content
Snippets Groups Projects
Commit 7aa86b24 authored by Gareth Hughes's avatar Gareth Hughes
Browse files

start playing with batch db entires

parent 3326d40d
No related branches found
No related tags found
1 merge request!92125 batch workflow
......@@ -147,7 +147,7 @@ export default function Batch() {
}
}
const facility_results = !state.searchTerm
const facility_results = !searchTerm
? list_of_batchSystems
: list_of_batchSystems.filter(facility =>
facility.name.toLowerCase().includes(searchTerm.toLocaleLowerCase())
......@@ -303,7 +303,8 @@ export default function Batch() {
<li className="facility-li">
<label className="container facility-checkbox"><input className="radio" onChange={setFacility} name="facility" type="radio" value={item.url} /> <span className="checkmark"></span></label><h5>{item.name}</h5><br/>
<span><b>Description:</b><br/> {item.description}</span> <br/>
<span><b>Link:</b> <a href={item.url}>{item.url}</a></span>
<span><b>Link:</b> <a href={item.url}>{item.url}</a></span> <br/>
<span><b>Runtime Engine: </b>{item.runtimeengine}</span>
</li>
))}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment