beta label

This commit is contained in:
Samuel Štancl 2019-09-18 15:49:51 +02:00
parent dcd7a47f2e
commit 38593e61a2
2 changed files with 4 additions and 4 deletions

View file

@ -58,14 +58,14 @@
<div class="flex flex-1 justify-end items-center text-right md:pl-10">
<select id="versionSelect">
@foreach($page->navigation as $version => $_)
@foreach($page->versions as $version => $name)
<option
value="/{{ $page->baseUrl . $version }}"
@if($page->version() === $version)
selected
@endif
>
{{ $version }}
{{ $name }}
</option>
@endforeach
</select>