fix(core): subscribe search not unsubscribe (#11929)

This commit is contained in:
EYHN
2025-04-23 13:56:58 +00:00
parent db5eadb72a
commit 4df75ec5d0
5 changed files with 44 additions and 22 deletions
@@ -116,4 +116,8 @@ export class DocsQuickSearchSession
setQuery(query: string) {
this.query$.next(query);
}
override dispose(): void {
this.query.unsubscribe();
}
}