diff --git a/src/Pages/Concerns/HasActionButtons.php b/src/Pages/Concerns/HasActionButtons.php index 0fd0536..58baec6 100644 --- a/src/Pages/Concerns/HasActionButtons.php +++ b/src/Pages/Concerns/HasActionButtons.php @@ -35,7 +35,7 @@ protected function cacheButtons(): void ->toArray(); } - protected function getCachedAction(string $name): ?Action + public function getCachedAction(string $name): ?Action { return $this->getCachedButtons()[$name] ?? parent::getCachedAction($name); }