Skip to content

Commit

Permalink
Fix field selection in status override edit form
Browse files Browse the repository at this point in the history
  • Loading branch information
cconard96 authored and cedric-anne committed May 25, 2022
1 parent 495ea24 commit 9cfe5f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/forms/status_override.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
{% set itemtype = override.fields['itemtype']|default(container_itemtypes|keys|first) %}

{{ fields.dropdownArrayField('itemtype', itemtype, container_itemtypes, __('Item type')) }}
{{ fields.dropdownArrayField('plugin_fields_fields_id', itemtype, container_fields, __('Field', 'fields')) }}
{{ fields.dropdownArrayField('plugin_fields_fields_id', override.fields['plugin_fields_fields_id'], container_fields, __('Field', 'fields')) }}

{% set status_field_html %}
<div id="status_inner_container{{ rand }}">
Expand Down

0 comments on commit 9cfe5f5

Please sign in to comment.