()
| 21 | readonly search = model<string | undefined>(''); |
| 22 | |
| 23 | constructor() { |
| 24 | effect(() => { |
| 25 | const search = this.search(); |
| 26 | if (search !== undefined) { |
| 27 | this.displaySearchDialog.set(true); |
| 28 | this.searchService.searchQuery.set(search); |
| 29 | } |
| 30 | }); |
| 31 | } |
| 32 | } |