!1617 fix(#I41GPD): update StringFilter the default value

* update StringFilter.razor.cs string类型默认筛选条件修正
This commit is contained in:
circlelee1981 2021-07-20 01:58:35 +00:00 committed by Argo
parent abbec239b6
commit b7c4a1f6ea

View File

@ -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]