UI: Hide stable builds #5
@ -122,8 +122,6 @@ class BuildsRenderer {
|
||||
$build_configuration = $build->build_configuration;
|
||||
$branch = $build->branch;
|
||||
$patch = $build->patch;
|
||||
$is_release_stable = BuildReleaseCycle::STABLE == $build->release_cycle;
|
||||
$is_release_candidate = BuildReleaseCycle::CANDIDATE == $build->release_cycle;
|
||||
|
||||
if (!isVisibleBuild($build)) {
|
||||
continue;
|
||||
@ -155,11 +153,12 @@ class BuildsRenderer {
|
||||
$analytics_event_os = $browser_platform;
|
||||
$analytics_classes = 'plausible-event-name=' . $analytics_event_name . ' plausible-event-os=' . $analytics_event_os . ' plausible-event-build=' . $analytics_event_build . '';
|
||||
|
||||
$needs_hidden = (in_array($file_extension, array("msi", "msix", "sha256")) or ($is_release_stable) or ($is_release_candidate));
|
||||
/* Hide certain items from the UI. */
|
||||
$is_release_stable = BuildReleaseCycle::STABLE == $build->release_cycle;
|
||||
$needs_hidden = (in_array($file_extension, array("msi", "msix", "sha256")) or ($is_release_stable));
|
||||
|
||||
$display_style = "";
|
||||
if ($needs_hidden)
|
||||
{
|
||||
if ($needs_hidden) {
|
||||
$display_style = 'style="display:none;"';
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user