Enh: Set max signs of User tags to 250

This commit is contained in:
buddh4 2019-10-22 17:43:09 +02:00
parent 75c123badf
commit c95a7661c3
4 changed files with 8 additions and 3 deletions

View File

@ -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)

View File

@ -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())],

View File

@ -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