mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 21:26:52 +01:00 
			
		
		
		
	 d03366cf3d
			
		
	
	
		d03366cf3d
		
			
		
	
	
	
	
		
			
			* 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();
 | |
|     }
 | |
| }
 |