mirror of
https://github.com/humhub/humhub.git
synced 2025-01-16 21:58:17 +01:00
Enh: Set max signs of User tags to 250
This commit is contained in:
parent
75c123badf
commit
c95a7661c3
@ -5,6 +5,7 @@ HumHub Change Log
|
||||
-------------------
|
||||
|
||||
- Fix #3698: Approval by group manager broken
|
||||
- Enh: Set max signs of User tags to 250
|
||||
|
||||
|
||||
1.3.17 (October 17, 2019)
|
||||
|
@ -30,7 +30,7 @@ class AccountSettings extends \yii\base\Model
|
||||
public function rules()
|
||||
{
|
||||
return [
|
||||
['tags', 'string', 'max' => 100],
|
||||
['tags', 'string', 'max' => 250],
|
||||
[['show_introduction_tour'], 'boolean'],
|
||||
[['timeZone'], 'in', 'range' => \DateTimeZone::listIdentifiers()],
|
||||
['language', 'in', 'range' => array_keys(Yii::$app->i18n->getAllowedLanguages())],
|
||||
|
@ -10,4 +10,8 @@
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#user-tags-panel .tags .tag {
|
||||
max-width:250px;
|
||||
}
|
||||
|
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user