Skip to content

Commit

Permalink
Header names along with Module Names
Browse files Browse the repository at this point in the history
Closes #268
  • Loading branch information
ezeholz authored Sep 20, 2021
1 parent 3b7c86c commit 657e167
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion remote.js
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ var Remote = {

var text = document.createElement("span");
text.className = "text";
text.innerHTML = " " + self.formatName(moduleData[i].name);
text.innerHTML = " " + self.formatName(moduleData[i].name) + (moduleData[i].header?`, ${moduleData[i].header}`:'');
moduleBox.appendChild(text);

parent.appendChild(moduleBox);
Expand Down

0 comments on commit 657e167

Please sign in to comment.