Skip to content

Commit

Permalink
update description formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
aayushRedHat committed Dec 30, 2023
1 parent 2ae4b36 commit 84fb235
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugins/plugin-site/src/components/PluginHealthScore.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ function ScoreComponent({component: {value, reasons}}) {
<div className="pluginHealth--score-component--reasons">
{reasons.map((reason, idx) => {
return (
<span key={idx}>{reason}</span>
<li key={idx}>
<span>{reason}</span>
</li>
);
})}
</div>
Expand Down

0 comments on commit 84fb235

Please sign in to comment.