Enh #6171: Make email in user administration and user approval clickable (#6178)

This commit is contained in:
Gevorg Mansuryan 2023-03-18 23:36:56 +04:00 committed by GitHub
parent a4edcf353b
commit edc4e404a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 2 deletions

View File

@ -6,6 +6,7 @@ HumHub Changelog (DEVELOP)
- Enh #6173: Theme variables `background-color-highlight` and `background-color-highlight-soft`
- Fix #6099: Empty buttons in GlobalConfirmModal footer
- Fix #6100: Broken area reference in some modal boxes
- Enh #6171: Make email in user administration and user approval clickable
1.14.0-beta.1 (March 10, 2023)
------------------------------

View File

@ -55,7 +55,10 @@ use yii\widgets\ActiveForm;
'columns' => [
['class' => ImageColumn::class],
['class' => DisplayNameColumn::class],
'email',
[
'attribute' => 'email',
'format' => 'email',
],
[
'attribute' => 'last_login',
'label' => Yii::t('AdminModule.user', 'Last login'),

View File

@ -53,7 +53,10 @@ AdminPendingRegistrationsAsset::register($this);
},
'contentOptions' => ['style' => 'width:auto; white-space: normal;'],
],
'email',
[
'attribute' => 'email',
'format' => 'email',
],
'originator.username',
[
'attribute' => 'language',