update session on request update

This commit is contained in:
yggverse 2024-07-19 12:46:06 +03:00
parent ecbe600fe4
commit 874376bbed
2 changed files with 21 additions and 10 deletions

View file

@ -15,6 +15,8 @@ class Request extends \Yggverse\Yoda\Abstract\Entity\Browser\Container\Page\Navb
$this->navbar->page->open(
$entry->get_text()
);
$this->navbar->page->container->tab->updateSession(); // @TODO async page update
}
protected function _onKeyRelease(
@ -23,5 +25,7 @@ class Request extends \Yggverse\Yoda\Abstract\Entity\Browser\Container\Page\Navb
): void
{
$this->navbar->refresh();
$this->navbar->page->container->tab->updateSession();
}
}