Skip to content

Commit 6ac6f47

Browse files
Fix
1 parent fffa529 commit 6ac6f47

1 file changed

Lines changed: 8 additions & 7 deletions

File tree

app/Filament/App/Pages/PedigreeChartPage.php

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,16 @@
33
namespace App\Filament\App\Pages;
44

55
use Filament\Pages\Page;
6-
6+
use UnitEnum;
7+
use BackedEnum;
78
class PedigreeChartPage extends Page
89
{
9-
protected static ?string $navigationIcon = 'heroicon-o-chart-bar';
10-
10+
protected static string | BackedEnum | null $navigationIcon ='heroicon-o-chart-bar';
11+
1112
protected static ?string $navigationLabel = 'Pedigree Chart';
12-
13-
protected static ?string $navigationGroup = 'Charts & Reports';
14-
13+
14+
protected static string | UnitEnum | null $navigationGroup = 'Charts & Reports';
15+
1516
protected static ?int $navigationSort = 1;
1617

1718
protected static string $view = 'filament.app.pages.pedigree-chart-page';
@@ -24,4 +25,4 @@ public function getWidgets(): array
2425
\App\Http\Livewire\PedigreeChartWidget::class,
2526
];
2627
}
27-
}
28+
}

0 commit comments

Comments
 (0)