We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 594a228 commit 0b9e04eCopy full SHA for 0b9e04e
remote.css
@@ -125,6 +125,10 @@ a {
125
.text {
126
flex: 1 1 auto;
127
margin-left: 0.2em;
128
+ white-space: nowrap;
129
+ overflow: hidden;
130
+ text-overflow: ellipsis;
131
+ min-width: 0;
132
}
133
134
.fa-angle-right {
remote.js
@@ -648,6 +648,9 @@ var Remote = {
648
var text = document.createElement("span");
649
text.className = "text";
650
text.innerHTML = " " + self.formatName(moduleData[i].name);
651
+ if ("header" in moduleData[i]) {
652
+ text.innerHTML += ` (${moduleData[i].header})`;
653
+ }
654
moduleBox.appendChild(text);
655
656
parent.appendChild(moduleBox);
0 commit comments