docs: SP1/SP3/SP4 manual scenarios and updated limitations
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user