소스 검색

use correctly typed searchtarget

Andrew Schlaepfer 5 년 전
부모
커밋
555f0a2b5d
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      packages/documentsearch/src/providers/notebooksearchprovider.ts

+ 3 - 1
packages/documentsearch/src/providers/notebooksearchprovider.ts

@@ -110,7 +110,9 @@ export class NotebookSearchProvider implements ISearchProvider {
       });
     }
 
-    this._currentMatch = await this._stepNext(searchTarget.content.activeCell);
+    this._currentMatch = await this._stepNext(
+      this._searchTarget.content.activeCell
+    );
 
     return allMatches;
   }