소스 검색

Hide empty cells in prop table

Remove awkward space when no default value is specified in the prop definition.
tags/0.3.0
부모
커밋
c4413725cc
1개의 변경된 파일8개의 추가작업 그리고 3개의 파일을 삭제
  1. +8
    -3
      packages/react-common-docs/src/components/Props/Props.tsx

+ 8
- 3
packages/react-common-docs/src/components/Props/Props.tsx 파일 보기

@@ -313,9 +313,14 @@ const Props: React.FC<Props> = ({ of: ofAttr }) => {
<BodyCell
data-column-name={propDefaultValue ? 'Default' : undefined}
>
<Code>
{getPropTypeHtml(propDefaultValue)}
</Code>
{
propDefaultValue
&& (
<Code>
{getPropTypeHtml(propDefaultValue)}
</Code>
)
}
</BodyCell>
<BodyCell>
{prop.description}


불러오는 중...
취소
저장