chore: Include test case title query in filters to improve UI consistency (#284)

This commit is contained in:
kimatata
2025-09-23 11:22:14 +09:00
committed by GitHub
parent 81805c605a
commit 0a8cccfad4
12 changed files with 164 additions and 215 deletions

View File

@@ -12,7 +12,7 @@ export function highlightSearchTerm({
text,
searchTerm,
className,
minSearchLength = 2,
minSearchLength = 1,
}: HighlightSearchTermProps): ReactNode {
if (!text || !searchTerm || searchTerm.length < minSearchLength) {
return text || null;