Skip to content
Snippets Groups Projects
Commit ec574cc6 authored by Grzegorz Rola's avatar Grzegorz Rola
Browse files

Merge branch 'feature/description-tip-serializer' into 'master'

feature(renderer): added description tip

See merge request !13
parents 566a9f19 15ecb018
No related branches found
Tags 2.4.4
Loading
Pipeline #5694 passed with warnings with stages
in 1 minute and 25 seconds
# Changelog
## [2.4.4] - 2021-04-26
### Fixed
- Added description_tip to Renderer
## [2.4.2] - 2021-03-10
### Fixed
- When no value is provided use default in validation
......
......@@ -38,6 +38,9 @@ class JsonNormalizedRenderer implements FieldRenderer {
if ( $field->has_description() ) {
$rendered['description'] = $field->get_description();
}
if ( $field->has_description_tip() ) {
$rendered['description_tip'] = $field->get_description_tip();
}
if ( $field->has_label() ) {
$rendered['label'] = $field->get_label();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment