fix: limits & server creation page
This commit is contained in:
		@@ -80,7 +80,7 @@
 | 
			
		||||
                <li class="step">Select a Destination</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
            <div class="flex flex-col justify-center gap-2 text-left xl:flex-row">
 | 
			
		||||
                @foreach ($servers as $server)
 | 
			
		||||
                @forelse($servers as $server)
 | 
			
		||||
                    <div class="gap-2 py-4 cursor-pointer group hover:bg-coollabs bg-coolgray-200"
 | 
			
		||||
                        wire:click="set_server({{ $server }})">
 | 
			
		||||
                        <div class="flex flex-col mx-6">
 | 
			
		||||
@@ -91,7 +91,15 @@
 | 
			
		||||
                                {{ $server->description }}</div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                @endforeach
 | 
			
		||||
                @empty
 | 
			
		||||
                    <div>
 | 
			
		||||
                        <div>No validated & reachable servers found.  <a class="text-white underline" href="/servers">
 | 
			
		||||
                            Go to servers page
 | 
			
		||||
                        </a></div>
 | 
			
		||||
 | 
			
		||||
                        <x-use-magic-bar link="/server/new" />
 | 
			
		||||
                    </div>
 | 
			
		||||
                @endforelse
 | 
			
		||||
            </div>
 | 
			
		||||
        @endif
 | 
			
		||||
        @if ($current_step === 'destinations')
 | 
			
		||||
 
 | 
			
		||||
@@ -1,5 +1,9 @@
 | 
			
		||||
<x-layout>
 | 
			
		||||
    <h1>Servers</span></h1>
 | 
			
		||||
    <div class="flex items-start gap-2">
 | 
			
		||||
        <h1>Servers</h1>
 | 
			
		||||
        <a class="text-white hover:no-underline" href="/server/new"> <x-forms.button class="btn">+ Add
 | 
			
		||||
            </x-forms.button></a>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="subtitle ">All Servers</div>
 | 
			
		||||
    <div class="grid gap-2 lg:grid-cols-2">
 | 
			
		||||
        @forelse ($servers as $server)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user