Merge pull request #14805 from Art4/fix-active-tab

Fix active tab
This commit is contained in:
Hypolite Petovan 2025-02-10 07:52:22 -05:00 committed by GitHub
commit ff342ce5cc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -154,7 +154,7 @@ class BaseSettings extends BaseModule
$tabs[] = [
'label' => $this->t('Import Contacts'),
'url' => 'settings/importcontacts',
'selected' => static::class == Settings\UserExport::class ? 'active' : '',
'selected' => static::class == Settings\ContactImport::class ? 'active' : '',
'accesskey' => '',
];