Skip to content

Commit

Permalink
show boolean license fields values (#1087)
Browse files Browse the repository at this point in the history
  • Loading branch information
sgalsaleh committed Sep 11, 2020
1 parent ba6d1c1 commit 78e7da0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kotsadm/web/src/components/apps/AppLicense.jsx
Expand Up @@ -186,7 +186,7 @@ class AppLicense extends Component {
return (
<div key={entitlement.label} className="flex u-marginBottom--20">
<p className="u-marginRight--10">{entitlement.title}</p>
<p className="u-fontWeight--bold u-color--tuna">{entitlement.value}</p>
<p className="u-fontWeight--bold u-color--tuna">{`${entitlement.value}`}</p>
</div>
);
})}
Expand Down

0 comments on commit 78e7da0

Please sign in to comment.