use getValue API method

This commit is contained in:
yggverse 2024-07-08 03:11:21 +03:00
parent 42cd6ba857
commit e43697ec0c
6 changed files with 9 additions and 17 deletions

View file

@ -103,7 +103,7 @@ class Content
public function refresh(): void
{
$this->search(
$this->container->navbar->filter->gtk->get_text()
$this->container->navbar->filter->getValue()
);
}
}

View file

@ -14,7 +14,7 @@ class Search extends \Yggverse\Yoda\Abstract\Entity\Browser\History\Container\Na
): void
{
$this->navbar->container->content->search(
$this->navbar->filter->gtk->get_text()
$this->navbar->filter->getValue()
);
}
}