mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 19:14:45 +02:00
Fix styling
This commit is contained in:
parent
679c72d70e
commit
ae189748f1
@ -8,8 +8,6 @@ use App\Models\Node;
|
|||||||
use App\Models\Server;
|
use App\Models\Server;
|
||||||
use App\Models\User;
|
use App\Models\User;
|
||||||
use Filament\Actions\CreateAction;
|
use Filament\Actions\CreateAction;
|
||||||
use Filament\Infolists\Components\Concerns\HasHeaderActions;
|
|
||||||
use Filament\Infolists\Infolist;
|
|
||||||
use Filament\Pages\Page;
|
use Filament\Pages\Page;
|
||||||
|
|
||||||
class Dashboard extends Page
|
class Dashboard extends Page
|
||||||
|
@ -592,8 +592,7 @@ class ServerResource extends Resource
|
|||||||
'paused', 'removing' => 'warning',
|
'paused', 'removing' => 'warning',
|
||||||
'node_fail', 'install_failed', 'suspended' => 'danger',
|
'node_fail', 'install_failed', 'suspended' => 'danger',
|
||||||
default => 'gray',
|
default => 'gray',
|
||||||
})
|
}),
|
||||||
,
|
|
||||||
|
|
||||||
Tables\Columns\TextColumn::make('uuid')
|
Tables\Columns\TextColumn::make('uuid')
|
||||||
->hidden()
|
->hidden()
|
||||||
|
@ -4,7 +4,6 @@ namespace App\Filament\Resources\ServerResource\Pages;
|
|||||||
|
|
||||||
use App\Filament\Resources\ServerResource;
|
use App\Filament\Resources\ServerResource;
|
||||||
use App\Services\Servers\ServerCreationService;
|
use App\Services\Servers\ServerCreationService;
|
||||||
use Filament\Actions;
|
|
||||||
use Filament\Resources\Pages\CreateRecord;
|
use Filament\Resources\Pages\CreateRecord;
|
||||||
use Illuminate\Database\Eloquent\Model;
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
|
@ -71,8 +71,7 @@ class EditProfile extends \Filament\Pages\Auth\EditProfile
|
|||||||
->prefixIcon('tabler-flag')
|
->prefixIcon('tabler-flag')
|
||||||
->live()
|
->live()
|
||||||
->default('en')
|
->default('en')
|
||||||
->helperText(fn (User $user, $state) =>
|
->helperText(fn (User $user, $state) => new HtmlString($user->isLanguageTranslated($state) ? '' : "
|
||||||
new HtmlString($user->isLanguageTranslated($state) ? '' : "
|
|
||||||
Your language ($state) has not been translated yet!
|
Your language ($state) has not been translated yet!
|
||||||
But never fear, you can help fix that by
|
But never fear, you can help fix that by
|
||||||
<a style='color: rgb(56, 189, 248)' href='https://crowdin.com/project/pelican-dev'>contributing directly here</a>.
|
<a style='color: rgb(56, 189, 248)' href='https://crowdin.com/project/pelican-dev'>contributing directly here</a>.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user