Revise field help for antipated_spec_changes. (#1835)

This commit is contained in:
Jason Robbins 2022-04-14 11:12:58 -07:00 коммит произвёл GitHub
Родитель c7175073ed
Коммит 552310000c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 11 добавлений и 6 удалений

Просмотреть файл

@ -506,9 +506,12 @@ ALL_FIELDS = {
attrs={'rows': 4, 'cols': 50, 'maxlength': 500,
'placeholder': 'https://\nhttps://'}),
help_text=
('Please list known spec issues whose resolution may introduce '
'web compat risk (e.g., change to naming or structure of '
'the API).')),
('Open questions about a feature may be a source of future web compat '
'or interop issues. Please list open issues (e.g. links to known '
'github issues in the project for the feature specification) whose '
'resolution may introduce web compat/interop risk (e.g., changing '
'to naming or structure of the API in a '
'non-backward-compatible way).')),
'finch_url': forms.URLField(
required=False, label='Finch experiment',

Просмотреть файл

@ -238,9 +238,11 @@
{% if 'anticipated_spec_changes' in sections_to_show or feature.anticipated_spec_changes %}
<br><br><h4>Anticipated spec changes</h4>
<p style="font-style: italic">
Please list known spec issues whose resolution may introduce
web compat risk (e.g., change to naming or structure of
the API).</p>
Open questions about a feature may be a source of future web compat or
interop issues. Please list open issues (e.g. links to known github
issues in the project for the feature specification) whose resolution
may introduce web compat/interop risk (e.g., changing to naming or
structure of the API in a non-backward-compatible way).</p>
{{feature.anticipated_spec_changes|urlize}}
{% endif %}