Skip to content

Commit 24ddce2

Browse files
committed
Update Build-LMFilter.ps1
1 parent 6d9a6a6 commit 24ddce2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Public/Build-LMFilter.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,11 +230,11 @@ function Build-LMFilter {
230230
# Validate field if validation is enabled
231231
if ($ValidationEnabled -and $property -and $ValidFields.Count -gt 0) {
232232
if ($ValidFields -ccontains $property) {
233-
Write-Host " ✓ Valid field" -ForegroundColor Green
233+
Write-Host " [VALID] Field accepted" -ForegroundColor Green
234234
$validInput = $true
235235
}
236236
else {
237-
Write-Host " ✗ Invalid field: '$property'" -ForegroundColor Red
237+
Write-Host " [INVALID] Field not found: '$property'" -ForegroundColor Red
238238

239239
# Try to find similar fields
240240
$suggestions = @()

0 commit comments

Comments
 (0)