mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-02 03:57:38 +08:00
fix(module: descriptions): colspan calculates error (#911)
This commit is contained in:
parent
5afafa35c3
commit
85256eb57c
@ -43,7 +43,7 @@
|
||||
<td class="ant-descriptions-item-label">
|
||||
@if (item.item.TitleTemplate != null)@item.item.TitleTemplate else @item.item.Title
|
||||
</td>
|
||||
<td class="ant-descriptions-item-content" colspan="@item.realSpan * 2 - 1">
|
||||
<td class="ant-descriptions-item-content" colspan="@(item.realSpan * 2 - 1)">
|
||||
@item.item.ChildContent
|
||||
</td>
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user