Skip to content

Commit

Permalink
Fixes scoreboard showing vUnknown
Browse files Browse the repository at this point in the history
  • Loading branch information
octoberapp committed Aug 9, 2023
1 parent a8f0ac6 commit f4bd390
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/servers/_manage_scoreboard.htm
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ <h4><?= __("Beacon Status") ?></h4>
<?php if ($formModel->last_deploy_at): ?>
<div class="scoreboard-item title-value">
<h4><?= __("Current Version") ?></h4>
<p>v<?= $formModel->last_version ?: __('Unknown') ?></p>
<p><?= $formModel->last_version ? 'v'.$formModel->last_version : __('Unknown') ?></p>
<p class="description" title="<?= $formModel->last_deploy_at->diffForHumans() ?>">
<?= __("updated") ?>: <?= $formModel->last_deploy_at->toFormattedDateString() ?>
</p>
Expand Down

0 comments on commit f4bd390

Please sign in to comment.