mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-03 12:37:40 +08:00
fix(module: datepicker): unable to click date button to select the week selection (#2463)
日期选择时Click触发范围 周选择时无法点击日期选择的问题
This commit is contained in:
parent
538616ef9d
commit
240f04f79f
@ -56,9 +56,9 @@
|
||||
<td title="@GetColTitle?.Invoke(currentColDate)"
|
||||
class="@cellCls"
|
||||
@onmouseenter="e => DateOnMouseEnter(currentColDate)"
|
||||
@onmouseleave="e => DateOnMouseLeave()">
|
||||
<div class="@innerCellCls"
|
||||
@onclick="e => OnValueSelect?.Invoke(currentColDate)" @onclick:stopPropagation="true">
|
||||
@onmouseleave="e => DateOnMouseLeave()"
|
||||
@onclick="e=> OnValueSelect?.Invoke(currentColDate)" >
|
||||
<div class="@innerCellCls">
|
||||
@if (IsCalendar)
|
||||
{
|
||||
<div class="@(PrefixCls)-calendar-date-value">
|
||||
|
Loading…
Reference in New Issue
Block a user