Skip to content

Commit

Permalink
Add missing label start tag
Browse files Browse the repository at this point in the history
  • Loading branch information
dontcallmedom committed Sep 27, 2022
1 parent aab6dbb commit 1cd81f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webrtc.js
Expand Up @@ -152,7 +152,7 @@ function showAmendments() {
if (annotations.length) {
const ui = document.createElement("fieldset");
ui.className = "diff-ui";
ui.innerHTML = `<label><input aria-controls="${section} ${section}-new" name="change-${section}" class=both checked type=radio> Show Current and Future</label><input aria-controls="${section} ${section}-new" name="change-${section}" class=current type=radio> Show Current</label><label><input aria-controls="${section} ${section}-new" name="change-${section}" class=future type=radio>Show Future</label>`;
ui.innerHTML = `<label><input aria-controls="${section} ${section}-new" name="change-${section}" class=both checked type=radio> Show Current and Future</label><label><input aria-controls="${section} ${section}-new" name="change-${section}" class=current type=radio> Show Current</label><label><input aria-controls="${section} ${section}-new" name="change-${section}" class=future type=radio>Show Future</label>`;
wrapper.appendChild(ui);
if (amendments[section][0].difftype === "modify" || !amendments[section][0].difftype) {
ui.classList.add("modify");
Expand Down

0 comments on commit 1cd81f1

Please sign in to comment.