feat: set text decoration to none

This commit is contained in:
karishmas6
2024-10-25 23:52:46 +05:30
parent ab91d73b48
commit c1ce674ba8

View File

@@ -98,7 +98,7 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe
return ( return (
<div key={`number-of-serializable-output-${key}`}> <div key={`number-of-serializable-output-${key}`}>
<Typography sx={{ margin: '20px 0px 20px 0px' }}> <Typography sx={{ margin: '20px 0px 20px 0px' }}>
<a href={`data:application/json;utf8,${JSON.stringify(row.serializableOutput[key], null, 2)}`} <a style={{ textDecoration: 'none' }} href={`data:application/json;utf8,${JSON.stringify(row.serializableOutput[key], null, 2)}`}
download={key}>Download as JSON</a> download={key}>Download as JSON</a>
</Typography> </Typography>
</div> </div>