Skip to content
Snippets Groups Projects
Commit 571bc1c8 authored by Klaas Kliffen's avatar Klaas Kliffen :satellite:
Browse files

Merge branch 'u/swinbank/fix-ida-links' into 'master'

Do not quote embedded JS expressions

See merge request astron-sdc/esap-gui!88
parents cdd36be7 f98cc68d
No related branches found
No related tags found
1 merge request!88Do not quote embedded JS expressions
Pipeline #29349 passed
......@@ -292,7 +292,7 @@ export default function Interactive() {
<li className="workflow-li">
<label className="container workflow-checkbox"><input type="radio" name="workflow" onChange={setWorkflow} value={item.url} /> <span className="checkmark"></span></label><h5>{item.name}</h5><br/>
<span><b>Description: </b> <span dangerouslySetInnerHTML={{ __html: item.description }}></span></span><br/>
<span><b>Link: </b> <a href="{item.url}">{item.url}</a></span><br/>
<span><b>Link: </b> <a href={item.url}>{item.url}</a></span><br/>
<span><b>Author: </b>{item.author}</span><br/>
<span><b>Runtime Platform: </b>{item.runtimePlatform}</span><br/>
<span><b>Keywords: </b>{item.keywords}</span>
......@@ -354,7 +354,7 @@ export default function Interactive() {
<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>
</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