mirror of
https://gitee.com/LongbowEnterprise/BootstrapBlazor.git
synced 2024-12-04 21:20:16 +08:00
!1617 fix(#I41GPD): update StringFilter the default value
* update StringFilter.razor.cs string类型默认筛选条件修正
This commit is contained in:
parent
abbec239b6
commit
b7c4a1f6ea
@ -1,4 +1,4 @@
|
||||
// Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
|
||||
// Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
|
||||
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
||||
// Website: https://www.blazor.zone or https://argozhang.github.io/
|
||||
|
||||
@ -16,11 +16,11 @@ namespace BootstrapBlazor.Components
|
||||
{
|
||||
private string Value1 { get; set; } = "";
|
||||
|
||||
private FilterAction Action1 { get; set; } = FilterAction.GreaterThanOrEqual;
|
||||
private FilterAction Action1 { get; set; } = FilterAction.Contains;
|
||||
|
||||
private string Value2 { get; set; } = "";
|
||||
|
||||
private FilterAction Action2 { get; set; } = FilterAction.LessThanOrEqual;
|
||||
private FilterAction Action2 { get; set; } = FilterAction.Equal;
|
||||
|
||||
[Inject]
|
||||
[NotNull]
|
||||
|
Loading…
Reference in New Issue
Block a user