Skip to content

Commit

Permalink
fix: another form fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyTWF committed Apr 20, 2024
1 parent e3e3543 commit df7ec04
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions app/Providers/Filament/AdminPanelProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
use Filament\Panel;
use Filament\PanelProvider;
use Filament\Support\Colors\Color;
use Filament\Support\Facades\FilamentColor;
use Filament\Widgets;
use Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse;
use Illuminate\Cookie\Middleware\EncryptCookies;
Expand All @@ -27,7 +28,6 @@
class AdminPanelProvider extends PanelProvider
{
private const VATSIM_UK_DARK_BLUE = [
'DEFAULT' => '#17375E',
50 => '#3378cd',
100 => '#2c6ab6',
200 => '#265d9f',
Expand All @@ -37,11 +37,10 @@ class AdminPanelProvider extends PanelProvider
600 => '#022b50',
700 => '#001f43',
800 => '#001436',
900 => '#000000'
900 => '#000000',
];

private const VATSIM_UK_LIGHT_BLUE = [
'DEFAULT' => '#25ADE3',
50 => '#8dd8f6',
100 => '#78cdf1',
200 => '#62c3ec',
Expand All @@ -51,7 +50,7 @@ class AdminPanelProvider extends PanelProvider
600 => '#007aab',
700 => '#005888',
800 => '#00325e',
900 => '#000000'
900 => '#000000',
];

public function panel(Panel $panel): Panel
Expand Down
2 changes: 1 addition & 1 deletion tests/app/Filament/Helpers/FakeSquawkResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace App\Filament\Helpers;

use App\Models\Squawk\Ccams\CcamsSquawkRange;
use Filament\Resources\Form;
use Filament\Forms\Form;
use Filament\Resources\Resource;

class FakeSquawkResource extends Resource
Expand Down

0 comments on commit df7ec04

Please sign in to comment.