Skip to content

Commit fffa529

Browse files
Fix
1 parent ca7b994 commit fffa529

1 file changed

Lines changed: 8 additions & 7 deletions

File tree

app/Filament/App/Pages/DescendantChartPage.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 DescendantChartPage extends Page
89
{
9-
protected static ?string $navigationIcon = 'heroicon-o-chart-pie';
10-
10+
protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-chart-pie';
11+
1112
protected static ?string $navigationLabel = 'Descendant 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 = 2;
1617

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

0 commit comments

Comments
 (0)