From 13897693463c010d6000e6d351cda6d90e67cf52 Mon Sep 17 00:00:00 2001 From: yggverse Date: Thu, 18 Jul 2024 18:43:17 +0300 Subject: [PATCH] refresh entire navbar on history navigation --- src/Entity/Browser/Container/Page/Navbar/History/Back.php | 2 +- src/Entity/Browser/Container/Page/Navbar/History/Forward.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Entity/Browser/Container/Page/Navbar/History/Back.php b/src/Entity/Browser/Container/Page/Navbar/History/Back.php index 04d841a..8365507 100644 --- a/src/Entity/Browser/Container/Page/Navbar/History/Back.php +++ b/src/Entity/Browser/Container/Page/Navbar/History/Back.php @@ -25,7 +25,7 @@ class Back extends Button ); } - $this->navbar->history->refresh(); + $this->navbar->refresh(); } public function refresh(): void diff --git a/src/Entity/Browser/Container/Page/Navbar/History/Forward.php b/src/Entity/Browser/Container/Page/Navbar/History/Forward.php index eba7bc8..649a7df 100644 --- a/src/Entity/Browser/Container/Page/Navbar/History/Forward.php +++ b/src/Entity/Browser/Container/Page/Navbar/History/Forward.php @@ -25,7 +25,7 @@ class Forward extends Button ); } - $this->navbar->history->refresh(); + $this->navbar->refresh(); } public function refresh(): void