Merge pull request #1809 from mozilla/fix-manage-site-list

fix space character typo in classList.add argument
This commit is contained in:
Maxx Crawford 2020-07-14 16:56:07 -05:00 committed by GitHub
commit 8cffccccce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1189,7 +1189,7 @@ Logic.registerPanel(P_CONTAINER_ASSIGNMENTS, {
delete assignments[siteKey]; delete assignments[siteKey];
this.showAssignedContainers(assignments); this.showAssignedContainers(assignments);
}); });
trElement.classList.add("menu-item", "hover-highlight", " keyboard-nav"); trElement.classList.add("menu-item", "hover-highlight", "keyboard-nav");
tableElement.appendChild(trElement); tableElement.appendChild(trElement);
}); });
} }