Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
tesseract-design
/
react-common
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
1
Wiki
Actividad
Explorar el Código
Hide empty cells in prop table
Remove awkward space when no default value is specified in the prop definition.
tags/0.3.0
TheoryOfNekomata
hace 3 años
padre
bfb49948d5
commit
c4413725cc
Se han
modificado 1 ficheros
con
8 adiciones
y
3 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+8
-3
packages/react-common-docs/src/components/Props/Props.tsx
+ 8
- 3
packages/react-common-docs/src/components/Props/Props.tsx
Ver fichero
@@ -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}
Escribir
Vista previa
Cargando…
Cancelar
Guardar