improvement: relax schema description styling so Markdown can be effective (via #5340)

This commit is contained in:
M-Vainauskas
2019-05-16 04:34:48 +01:00
committed by kyle
parent 58d48f7e1a
commit 96c444e81e

View File

@@ -79,8 +79,8 @@ export default class ObjectModel extends Component {
{
<table className="model"><tbody>
{
!description ? null : <tr style={{ color: "#666", fontStyle: "italic" }}>
<td>description:</td>
!description ? null : <tr style={{ color: "#666", fontWeight: "normal" }}>
<td style={{ fontWeight: "bold" }}>description:</td>
<td>
<Markdown source={ description } />
</td>