change name of RESX key and value to reflect purpose

This commit is contained in:
sbwalker
2023-10-10 10:33:11 -04:00
parent f6c55279d1
commit a7e1fe76c3
2 changed files with 4 additions and 4 deletions

View File

@ -9,7 +9,7 @@
@if (AllowSearch == "True")
{
<div class="input-group my-3">
<input id="search" class="form-control" placeholder=@string.Format(Localizer["SearchColumns"], SearchProperties) @bind="@_search" />
<input id="search" class="form-control" placeholder=@string.Format(Localizer["SearchPlaceholder"], SearchProperties) @bind="@_search" />
<button type="button" class="btn btn-primary" @onclick="Search">@SharedLocalizer["Search"]</button>
<button type="button" class="btn btn-secondary" @onclick="Reset">@SharedLocalizer["Reset"]</button>
</div>