docs: SP1/SP3/SP4 manual scenarios and updated limitations

This commit is contained in:
2026-06-10 12:49:48 +07:00
parent ac3f0886d5
commit 8ea680d0df
2 changed files with 12 additions and 2 deletions
+5 -1
View File
@@ -78,7 +78,11 @@ export function SearchBar({
<input
ref={inputRef}
value={term}
onChange={(e) => setTerm(e.target.value)}
onChange={(e) => {
setTerm(e.target.value);
setCount({ index: -1, total: 0 });
if (surfaceId) getSearch(surfaceId)?.clearDecorations();
}}
onKeyDown={(e) => {
if (e.key === "Enter") {
e.preventDefault();