We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d9a6a6 commit 24ddce2Copy full SHA for 24ddce2
Public/Build-LMFilter.ps1
@@ -230,11 +230,11 @@ function Build-LMFilter {
230
# Validate field if validation is enabled
231
if ($ValidationEnabled -and $property -and $ValidFields.Count -gt 0) {
232
if ($ValidFields -ccontains $property) {
233
- Write-Host " ✓ Valid field" -ForegroundColor Green
+ Write-Host " [VALID] Field accepted" -ForegroundColor Green
234
$validInput = $true
235
}
236
else {
237
- Write-Host " ✗ Invalid field: '$property'" -ForegroundColor Red
+ Write-Host " [INVALID] Field not found: '$property'" -ForegroundColor Red
238
239
# Try to find similar fields
240
$suggestions = @()
0 commit comments