2023-04-14 08:00:42 +00:00
|
|
|
<div>
|
|
|
|
<button wire:click='checkUpdate'>Updates</button>
|
2023-04-28 06:46:39 +00:00
|
|
|
<div wire:loading wire:target="checkUpdate">
|
|
|
|
Checking for updates...
|
|
|
|
</div>
|
2023-04-27 12:32:39 +00:00
|
|
|
@if (auth()->user()->teams->contains(0))
|
|
|
|
<button wire:click='forceUpgrade'>Force Upgrade</button>
|
2023-04-28 06:46:39 +00:00
|
|
|
<div wire:loading wire:target="forceUpgrade">
|
|
|
|
Updating Coolify...
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
@if ($updateAvailable)
|
|
|
|
Update available
|
2023-04-27 12:32:39 +00:00
|
|
|
@endif
|
2023-04-14 08:00:42 +00:00
|
|
|
</div>
|