Fix styling
This commit is contained in:
committed by
github-actions[bot]
parent
41fb6a1fc9
commit
d86274cc37
@@ -9,16 +9,20 @@ use Livewire\Component;
|
||||
class Create extends Component
|
||||
{
|
||||
public $private_keys = [];
|
||||
|
||||
public bool $limit_reached = false;
|
||||
|
||||
public function mount()
|
||||
{
|
||||
$this->private_keys = PrivateKey::ownedByCurrentTeam()->get();
|
||||
if (!isCloud()) {
|
||||
if (! isCloud()) {
|
||||
$this->limit_reached = false;
|
||||
|
||||
return;
|
||||
}
|
||||
$this->limit_reached = Team::serverLimitReached();
|
||||
}
|
||||
|
||||
public function render()
|
||||
{
|
||||
return view('livewire.server.create');
|
||||
|
||||
Reference in New Issue
Block a user