Skip to content

Commit

Permalink
web/profile: Make capability table more readable (#394)
Browse files Browse the repository at this point in the history
  • Loading branch information
chivay authored May 28, 2021
1 parent 531cf00 commit ee8215a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mwdb/web/src/components/Profile/Views/ProfileCapabilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ function CapabilitiesTable({ profile }) {
<tbody>
{profile.capabilities.sort().map((cap) => (
<tr>
<th className="col-1">
<th>
<span className="badge badge-success">{cap}</span>
</th>
<td className="col">
<td>
<div>
{capabilitiesList[cap] || "(no description)"}
</div>
Expand Down

0 comments on commit ee8215a

Please sign in to comment.