From ddef0d3a01c84434e0b24f416676abba9b6f7e34 Mon Sep 17 00:00:00 2001 From: Sukhwinder Dhillon Date: Thu, 13 Feb 2025 12:38:38 +0100 Subject: [PATCH] SchedulesController::getTabs(): Add missing `baseTagrget` to tabs --- application/controllers/SchedulesController.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/application/controllers/SchedulesController.php b/application/controllers/SchedulesController.php index 9ee77003..fa5ff70e 100644 --- a/application/controllers/SchedulesController.php +++ b/application/controllers/SchedulesController.php @@ -110,10 +110,12 @@ public function getTabs(): Tabs 'baseTarget' => '_main' ])->add('event-rules', [ 'label' => $this->translate('Event Rules'), - 'url' => Links::eventRules() + 'url' => Links::eventRules(), + 'baseTarget' => '_main' ])->add('contacts', [ 'label' => $this->translate('Contacts'), - 'url' => Links::contacts() + 'url' => Links::contacts(), + 'baseTarget' => '_main' ])->add('contact-groups', [ 'label' => $this->translate('Contact Groups'), 'url' => Links::contactGroups(),