| Index: appengine/findit/templates/build_failure.html
|
| diff --git a/appengine/findit/templates/build_failure.html b/appengine/findit/templates/build_failure.html
|
| index d7f5b9fa604a583d31c4c51dc7561a5e48c63233..2f775e1287bc52a8a7ad4c2bebe1b7be08569176 100644
|
| --- a/appengine/findit/templates/build_failure.html
|
| +++ b/appengine/findit/templates/build_failure.html
|
| @@ -252,13 +252,13 @@
|
| {% set cl_info = suspected_cl.repo_name + '/' + suspected_cl.revision %}
|
| {% if suspected_cl.status == 0 %}
|
| <input type="radio" name="{{ cl_info }}" value="0" checked="checked" onchange="triageSuspectedCL(this)">Correct
|
| - <input type="radio" name="{{ cl_info }}" value="1" onchange="triageSuspectedCL(this)">Inorrect
|
| + <input type="radio" name="{{ cl_info }}" value="1" onchange="triageSuspectedCL(this)">Incorrect
|
| {% elif suspected_cl.status == 1 %}
|
| <input type="radio" name="{{ cl_info }}" value="0" onchange="triageSuspectedCL(this)">Correct
|
| - <input type="radio" name="{{ cl_info }}" value="1" checked="checked" onchange="triageSuspectedCL(this)">Inorrect
|
| + <input type="radio" name="{{ cl_info }}" value="1" checked="checked" onchange="triageSuspectedCL(this)">Incorrect
|
| {% else %}
|
| <input type="radio" name="{{ cl_info }}" value="0" onchange="triageSuspectedCL(this)">Correct
|
| - <input type="radio" name="{{ cl_info }}" value="1" onchange="triageSuspectedCL(this)">Inorrect
|
| + <input type="radio" name="{{ cl_info }}" value="1" onchange="triageSuspectedCL(this)">Incorrect
|
| {% endif %}
|
| </td>
|
| </tr>
|
|
|