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 75ca1bb commit 38d5ccaCopy full SHA for 38d5cca
src/Elastic.Markdown/Myst/Components/ApplicableToComponent.cshtml
@@ -266,7 +266,7 @@
266
case ProductLifecycle.GenerallyAvailable:
267
if (TryGetRealVersion(applicability, out var version) && version > versioningSystem.Current)
268
{
269
- badgeText = applications.Any(a => a.Lifecycle == ProductLifecycle.TechnicalPreview) ? "GA planned" : "Planned";
+ badgeText = applications.Any(a => a.Lifecycle is ProductLifecycle.TechnicalPreview or ProductLifecycle.Beta) ? "GA planned" : "Planned";
270
lifecycleTooltip = "We plan to add this functionality in a future update. Plans may change without notice.";
271
lifecycleClass = "planned";
272
}
0 commit comments