mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-09-02 02:05:11 +00:00
show more than one future roadmap item
This commit is contained in:
parent
461e3ef6d5
commit
8ee9ca9666
2 changed files with 1 additions and 2 deletions
|
@ -248,7 +248,6 @@ class ContentActions extends Actions
|
||||||
{
|
{
|
||||||
$cache = !Request::getParam('nocache');
|
$cache = !Request::getParam('nocache');
|
||||||
$githubItems = Github::listRoadmapChangesets($cache);
|
$githubItems = Github::listRoadmapChangesets($cache);
|
||||||
|
|
||||||
$projectMaxVersions = [];
|
$projectMaxVersions = [];
|
||||||
foreach($githubItems as $group => $items)
|
foreach($githubItems as $group => $items)
|
||||||
{
|
{
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
<?php foreach($groupItems as $item): ?>
|
<?php foreach($groupItems as $item): ?>
|
||||||
<?php ++$index ?>
|
<?php ++$index ?>
|
||||||
<div class="roadmap-item" <?php echo $index != 1 ? 'style="display: none"' : '' ?>>
|
<div class="roadmap-item" <?php echo $index != 1 && isset($firstItem['sort_key']) ? 'style="display: none"' : '' ?>>
|
||||||
<?php if (isset($item['badge']) || isset($item['assignee'])): ?>
|
<?php if (isset($item['badge']) || isset($item['assignee'])): ?>
|
||||||
<div>
|
<div>
|
||||||
<?php if (isset($item['assignee'])): ?>
|
<?php if (isset($item['assignee'])): ?>
|
||||||
|
|
Loading…
Add table
Reference in a new issue