fix space character typo in classList.add argument

This commit is contained in:
luke crouch 2020-07-14 15:34:07 -05:00
parent a10d222ce7
commit 8de231f5e9

View file

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