saade / filament-fullcalendar

The Most Popular JavaScript Calendar as a Filament Widget
MIT License
269 stars 83 forks source link

Typo in namespace #119

Closed sinnbeck closed 11 months ago

sinnbeck commented 11 months ago

Here https://github.com/saade/filament-fullcalendar/blob/3.x/resources/views/fullcalendar.blade.php#L2

It says FilamentFullcalendar but should be FilamentFullCalendar

saade commented 11 months ago

its already fixed in v3.0.2 90a3adab4ecd1ebd5f04903d4a1993aef9119716

markcameron commented 9 months ago

@saade It wasn't fixed in 90a3ada, that only fixed the class name part:

\Saade\FilamentFullcalendar\FilamentFullCalendarPlugin::get();

But there's also a lowercase 'c' here:

\Saade\FilamentFullcalendar\FilamentFullCalendarPlugin::get();

So it should be:

\Saade\FilamentFullCalendar\FilamentFullCalendarPlugin::get();

Made a PR here #139