We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6a1ec0 commit 98fba8bCopy full SHA for 98fba8b
jbi/steps.py
@@ -220,7 +220,7 @@ def _maybe_update_issue_mapped_field(
220
target_value = getattr(parameters, f"{source_field}_map").get(source_value)
221
222
# If field is empty on create, or update is about another field, then nothing to do.
223
- if (context.operation == Operation.CREATE and source_value == "") or (
+ if (context.operation == Operation.CREATE and source_value in ["", "---"]) or (
224
context.operation == Operation.UPDATE
225
and source_field not in context.event.changed_fields()
226
):
0 commit comments