ui-shared: Remove a name attribute with an empty value

The name attribute is optional in an input element, but it must not be
an empty value.

See: https://html.spec.whatwg.org/#attr-fe-name
See: https://html.spec.whatwg.org/#the-input-element
This commit is contained in:
Juuso Lapinlampi 2016-05-11 18:04:18 +00:00 υποβλήθηκε από Jason A. Donenfeld
γονέας 8d05b398bb
υποβολή 9afda36ed7
1 αρχεία άλλαξαν με 1 προσθήκες και 1 διαγραφές

@ -944,7 +944,7 @@ static void print_header(void)
if (ctx.repo->enable_remote_branches)
for_each_remote_ref(print_branch_option, ctx.qry.head);
html("</select> ");
html("<input type='submit' name='' value='switch'/>");
html("<input type='submit' value='switch'/>");
html("</form>");
}
} else