uranusjr commented on code in PR #31980:
URL: https://github.com/apache/airflow/pull/31980#discussion_r1233625388
##########
airflow/www/templates/airflow/trigger.html:
##########
@@ -117,7 +117,7 @@
</textarea>
{% elif form_details.schema and ("integer" in form_details.schema.type or
"number" in form_details.schema.type) %}
<input class="form-control" name="element_{{ form_key }}" id="element_{{
form_key }}"
- {% if "integer" in form_details.schema.type %} valuetype="number"
type="number" {%else%} valuetype="decimal" type="decimal" {% endif %}
+ valuetype="number" {% if "integer" in form_details.schema.type %}
type="number" {%else%} type="decimal" {% endif %}
Review Comment:
```suggestion
valuetype="number" {% if "integer" in form_details.schema.type
%} type="number" {% else %} type="decimal" {% endif %}
```
Good change to fix this formatting
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]