Skip to content

Commit

Permalink
Fix pulling releases from GitHub, minor styling fix for community page
Browse files Browse the repository at this point in the history
  • Loading branch information
zanechua committed Jan 25, 2019
1 parent 1f57f56 commit 1826afd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/Library/Unicorn.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public static function getGithubReleases($filter = true)
$Parsedown->setSafeMode(true);

foreach ($releases as $release) {
if (is_null($unstable) && is_null($stable)) {
if (is_null($unstable) || is_null($stable)) {
if (is_null($unstable) && $release->prerelease) {
$release->commit_data = self::getGithubCommitDataByTag($release->tag_name);
$release->body_html = $Parsedown->text($release->body);
Expand Down
4 changes: 4 additions & 0 deletions resources/assets/sass/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -926,6 +926,10 @@ textarea.valid + label::after {
margin-top: 15px;
}

.tooltip-content p {
color: $white-color;
}

.tooltip-content ul {
text-align: left;
padding: 5px 5px 5px 20px;
Expand Down

0 comments on commit 1826afd

Please sign in to comment.