Skip to content

Commit

Permalink
return the form dict even if it is empty and let rjsf handle it (#812)
Browse files Browse the repository at this point in the history
Co-authored-by: jasquat <[email protected]>
  • Loading branch information
jasquat and jasquat authored Dec 14, 2023
1 parent 7234f0f commit 1fdca14
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -503,11 +503,8 @@ def task_show(
process_model=process_model_with_form,
revision=process_instance.bpmn_version_control_identifier,
)

_update_form_schema_with_task_data_as_needed(form_dict, task_model.data)

if form_dict:
task_model.form_schema = form_dict
task_model.form_schema = form_dict

if form_ui_schema_file_name:
ui_form_contents = _prepare_form_data(
Expand All @@ -516,8 +513,7 @@ def task_show(
process_model=process_model_with_form,
revision=process_instance.bpmn_version_control_identifier,
)
if ui_form_contents is not None:
task_model.form_ui_schema = ui_form_contents
task_model.form_ui_schema = ui_form_contents
else:
task_model.form_ui_schema = {}
_munge_form_ui_schema_based_on_hidden_fields_in_task_data(task_model.form_ui_schema, task_model.data)
Expand Down

0 comments on commit 1fdca14

Please sign in to comment.