diff --git a/sentry_jira/forms.py b/sentry_jira/forms.py index 475503b..1994b83 100644 --- a/sentry_jira/forms.py +++ b/sentry_jira/forms.py @@ -252,6 +252,8 @@ def clean(self): schema = f["schema"] if schema.get("type") == "string" and not schema.get("custom") == CUSTOM_FIELD_TYPES["select"]: continue # noop + if schema.get("type") == "date": + continue if schema["type"] == "user" or schema.get('item') == "user": v = {"name": v} elif schema.get("custom") == CUSTOM_FIELD_TYPES.get("multiuserpicker"):