mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 05:14:46 +02:00

* Make sure we are talking to a `Pelican Wings` instance * Enforce matching `token_id` * Refactor `NodeSystemInformation`
20 lines
372 B
PHP
20 lines
372 B
PHP
<?php
|
|
|
|
namespace App\Filament\Components\Tables\Columns;
|
|
|
|
use Filament\Tables\Columns\IconColumn;
|
|
|
|
class NodeHealthColumn extends IconColumn
|
|
{
|
|
protected string $view = 'livewire.columns.version-column';
|
|
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->label(trans('admin/node.table.health'));
|
|
|
|
$this->alignCenter();
|
|
}
|
|
}
|