Skip to content

Commit 0b9381f

Browse files
MyvTsvRom1-B
andauthored
fix(model): fix dropdown type for is_private field (#574)
* fix(model): fix dropdown type for is_private field * Update CHANGELOG.md * review * Update templates/model_advanced_form.html.twig --------- Co-authored-by: Romain B. <8530352+Rom1-B@users.noreply.github.com>
1 parent be4bdbe commit 0b9381f

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1010
### Fixed
1111

1212
- Fix model subform not displayed after page reload
13+
- Rename visibility field label to "Is Private"
1314

1415
## [2.15.3] - 2025-12-22
1516

templates/model_advanced_form.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
{# Forms fields #}
5353
{{ fields.textField('name', values['name'], __('Name'), field_options) }}
5454

55-
{{ fields.dropdownYesNo('is_private', values['is_private'], __('Visibility'), field_options) }}
55+
{{ fields.dropdownYesNo('is_private', values['is_private'], __('Is private'), field_options) }}
5656

5757
{{ fields.dropdownField('Entity', 'entities_id', values['entities_id'], __('Entity'), field_options) }}
5858

0 commit comments

Comments
 (0)