このサイトは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行の削除
分割表示
差分オプション
統計情報を表示
Patchファイルをダウンロード
Diffファイルをダウンロード
+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}
書き込み
プレビュー
読み込み中…
キャンセル
保存