diff --git a/src/Entity/Window/Tab/History.php b/src/Entity/Window/Tab/History.php index b9c0c130..73772269 100644 --- a/src/Entity/Window/Tab/History.php +++ b/src/Entity/Window/Tab/History.php @@ -50,4 +50,25 @@ class History 0 ); } + + public function search( + ?string $filter = null + ): void + { + $this->navbar->filter->setValue( + trim( + strval( + $filter + ) + ) + ); + + $this->content->search( + trim( + strval( + $filter + ) + ) + ); + } } \ No newline at end of file