css
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<div>
|
||||
@if (auth()->user()->teams->contains(0))
|
||||
<button wire:click='upgrade' class="m-1 hover:underline">Force Upgrade</button>
|
||||
<button wire:click='upgrade' class="m-1 border-none hover:underline">Force Upgrade</button>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
@@ -12,24 +12,11 @@
|
||||
Delete</x-inputs.button>
|
||||
<span wire:poll.5000ms='pollingStatus'>
|
||||
@if ($application->status === 'running')
|
||||
@if (data_get($application, 'ports_mappings_array'))
|
||||
@foreach ($application->ports_mappings_array as $port)
|
||||
@if (config('app.env') === 'local')
|
||||
<a target="_blank" href="http://localhost:{{ explode(':', $port)[0] }}">Open
|
||||
{{ explode(':', $port)[0] }}</a>
|
||||
@else
|
||||
<a target="_blank"
|
||||
href="http://{{ $application->destination->server->ip }}:{{ explode(':', $port)[0] }}">Open
|
||||
{{ $port }}</a>
|
||||
@endif
|
||||
@endforeach
|
||||
@endif
|
||||
<span class="text-xs text-pink-600" wire:loading.delay.longer>Loading current status...</span>
|
||||
<span class="text-green-500" wire:loading.remove.delay.longer>{{ $application->status }}</span>
|
||||
@else
|
||||
<span class="text-xs text-pink-600" wire:loading.delay.longer>Loading current status...</span>
|
||||
<span class="text-red-500" wire:loading.remove.delay.longer>{{ $application->status }}</span>
|
||||
@endif
|
||||
|
||||
</span>
|
||||
</div>
|
||||
|
||||
@@ -14,8 +14,9 @@
|
||||
<div class="text-sm">
|
||||
@if (data_get($image, 'is_current'))
|
||||
<span class="font-bold text-coollabs">LIVE</span>
|
||||
|
|
||||
@endif
|
||||
| {{ data_get($image, 'tag') }}
|
||||
{{ data_get($image, 'tag') }}
|
||||
</div>
|
||||
|
||||
<div class="text-xs">{{ data_get($image, 'created_at') }}</div>
|
||||
|
||||
Reference in New Issue
Block a user