Fix initialization of account profile field type "Markdown" (#6391)

This commit is contained in:
Yuriy Bakhtin 2023-06-19 20:09:19 +04:00 committed by GitHub
parent 77d64b1d32
commit 39df85830b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 11 deletions

View File

@ -52,3 +52,4 @@ HumHub Changelog
- Enh #6370: Remove FlatElements CSS
- Enh #6384: Added Serbian(sr) language
- Enh #6389: Remove deprecated JS function `setModalLoader()`
- Fix #6391: Fix initialization of account profile field type "Markdown"

View File

@ -61,15 +61,4 @@ class MarkdownEditor extends BaseType
return parent::getFieldRules($rules);
}
/**
* @inheritdoc
*/
public function getFieldFormDefinition(User $user = null, array $options = []): array
{
return parent::getFieldFormDefinition($user, array_merge([
'rows' => '3'
], $options));
}
}
?>