本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
探索
說明
登入
tesseract-design
/
react-common
關注
1
收藏
0
複製
0
程式碼
問題
0
合併請求
0
版本發佈
1
Wiki
活動
瀏覽代碼
Hide empty cells in prop table
Remove awkward space when no default value is specified in the prop definition.
tags/0.3.0
TheoryOfNekomata
3 年之前
父節點
bfb49948d5
當前提交
c4413725cc
共有
1 個檔案被更改
,包括
8 行新增
和
3 行删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+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}
Write
Preview
Loading…
取消
儲存