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 84b91d6 commit ca3213cCopy full SHA for ca3213c
src/librustdoc/html/static/main.js
@@ -1212,11 +1212,13 @@
1212
array.forEach(function(item) {
1213
var name, type, href, displayPath;
1214
1215
- if (shown.indexOf(item.ty) !== -1) {
+ var id_ty = item.ty + item.path + item.name;
1216
+ if (shown.indexOf(id_ty) !== -1) {
1217
return;
1218
}
1219
- shown.push(item.ty);
1220
+ console.log(item);
1221
+ shown.push(id_ty);
1222
name = item.name;
1223
type = itemTypes[item.ty];
1224
0 commit comments