feat: expose more apis

This commit is contained in:
2026-04-29 23:39:09 +02:00
parent fa2cca6fa4
commit 3f92e74350
14 changed files with 297 additions and 23 deletions

View File

@@ -189,6 +189,12 @@ export class PluginStoreComponent implements OnInit {
}
ngOnInit(): void {
const searchQuery = this.route.snapshot.queryParamMap.get('search')?.trim();
if (searchQuery) {
this.searchTerm.set(searchQuery);
}
if (this.store.sourceUrls().length > 0 && this.store.sources().length === 0) {
void this.refreshSources();
}