Skip to content
This repository was archived by the owner on Oct 13, 2022. It is now read-only.

Commit fab38ba

Browse files
authored
Merge pull request #149 from bagashe/bug_fix
[Bugfix] `name` attribute for radio button was not set correctly.
2 parents 4aa3515 + 9873f28 commit fab38ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AssemblerHttpServer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2242,7 +2242,7 @@ void Assembler::renderEditableAlignmentConfig(
22422242
html << "<tr><th class=left>[Align]<th class=center>Value<th class=left>Description";
22432243

22442244
html << "<tr><th class=left>alignMethod<td>"
2245-
"<input type=radio computeAllAlignname=method value=0" <<
2245+
"<input type=radio name=method value=0" <<
22462246
(method==0 ? " checked=checked" : "") << "> 0 (Shasta)<br>"
22472247
"<input type=radio name=method value=1" <<
22482248
(method==1 ? " checked=checked" : "") << "> 1 (SeqAn)<br>"

0 commit comments

Comments
 (0)