Skip to content

Commit

Permalink
[docs-infra] Fix display of empty default props
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Feb 15, 2024
1 parent f9b141f commit de9b76d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export default function PropertiesTable(props: PropertiesTableProps) {
}
</td>
<td className="default-column">
<span className="MuiApi-table-item-default">{propDefault}</span>
{propDefault && <span className="MuiApi-table-item-default">{propDefault}</span>}
</td>
<td className="MuiPropTable-description-column">
{description && <PropDescription description={description} />}
Expand Down

0 comments on commit de9b76d

Please sign in to comment.