Skip to content

Commit

Permalink
fix KeyError: title on qr code bulk runner
Browse files Browse the repository at this point in the history
  • Loading branch information
devxpy committed Oct 19, 2023
1 parent 06d5224 commit ffbe956
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/BulkRunner.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def render_form_v2(self):
else:
input_fields = optional_input_fields
field_props = schema["properties"][field]
title = field_props["title"]
title = field_props.get("title", field.replace("_", " ").capitalize())
keys = None
if is_arr(field_props):
try:
Expand Down

0 comments on commit ffbe956

Please sign in to comment.