Skip to content

Commit ddef0d3

Browse files
SchedulesController::getTabs(): Add missing baseTagrget to tabs
1 parent 7cc3eb0 commit ddef0d3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

application/controllers/SchedulesController.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,12 @@ public function getTabs(): Tabs
110110
'baseTarget' => '_main'
111111
])->add('event-rules', [
112112
'label' => $this->translate('Event Rules'),
113-
'url' => Links::eventRules()
113+
'url' => Links::eventRules(),
114+
'baseTarget' => '_main'
114115
])->add('contacts', [
115116
'label' => $this->translate('Contacts'),
116-
'url' => Links::contacts()
117+
'url' => Links::contacts(),
118+
'baseTarget' => '_main'
117119
])->add('contact-groups', [
118120
'label' => $this->translate('Contact Groups'),
119121
'url' => Links::contactGroups(),

0 commit comments

Comments
 (0)