fix(SelectTable): search text wrap inside validate form (#3043)

* fix(SelectTable): nowrap inside validate form

* chore: bump version 8.3.2-beta01
This commit is contained in:
Argo Zhang
2024-03-07 10:03:26 +08:00
committed by GitHub
parent 64f307b53b
commit 381435af0a
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<Version>8.3.1</Version>
<Version>8.3.2-beta01</Version>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0'">

View File

@@ -895,7 +895,7 @@
@if (ShowSearchTextTooltip)
{
<Tooltip Placement="Placement.Top" Title="@SearchTooltip" Sanitize="false" IsHtml="true">
<BootstrapInput class="table-toolbar-search" placeholder="@SearchPlaceholderText" @onkeyup="OnSearchKeyUp" @bind-Value="@SearchText">
<BootstrapInput class="table-toolbar-search" placeholder="@SearchPlaceholderText" @onkeyup="OnSearchKeyUp" @bind-Value="@SearchText" ShowLabel="false" SkipValidate="true">
</BootstrapInput>
</Tooltip>
}