Skip to content

Commit

Permalink
SchedulesController::getTabs(): Add missing baseTagrget to tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
sukhwinder33445 committed Mar 3, 2025
1 parent 7cc3eb0 commit ddef0d3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions application/controllers/SchedulesController.php
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit ddef0d3

Please sign in to comment.