kopia lustrzana https://github.com/shoelace-style/shoelace
fix empty attributes in properties table (#1536)
rodzic
87837df35c
commit
87ac077b0a
|
@ -137,15 +137,17 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<code class="nowrap">{{ prop.name }}</code>
|
<code class="nowrap">{{ prop.name }}</code>
|
||||||
{% if prop.attribute != prop.name %}
|
{% if prop.attribute | length > 0 %}
|
||||||
<br>
|
{% if prop.attribute != prop.name %}
|
||||||
<sl-tooltip content="This attribute is different from its property">
|
<br>
|
||||||
<small>
|
<sl-tooltip content="This attribute is different from its property">
|
||||||
<code class="nowrap">
|
<small>
|
||||||
{{ prop.attribute }}
|
<code class="nowrap">
|
||||||
</code>
|
{{ prop.attribute }}
|
||||||
</small>
|
</code>
|
||||||
</sl-tooltip>
|
</small>
|
||||||
|
</sl-tooltip>
|
||||||
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
|
|
Ładowanie…
Reference in New Issue