We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6411d84 commit 3c69b9cCopy full SHA for 3c69b9c
public/assets/js/vanillaEmbed.js
@@ -69,17 +69,14 @@ function getVersionToDisplay(groupedVersion) {
69
70
if (firstRelease.item) {
71
versionsToDisplay.push(firstRelease.item);
72
- if (firstBeta.item.featured) {
73
- versionsToDisplay.push(firstBeta.item);
74
- } else if (firstAlpha.item.featured) {
75
- versionsToDisplay.push(firstAlpha.item);
76
- }
77
} else if (firstBeta.item) {
78
versionsToDisplay.push(firstBeta.item);
79
- if (firstAlpha.item.featured) {
80
81
82
} else if (firstAlpha.item) versionsToDisplay.push(firstAlpha.item);
+
+ for(const versionItem of versionItems){
+ if(versionItem.name.includes('▫️'))
+ versionsToDisplay.push(versionItem);
+ }
83
}
84
85
0 commit comments