Dan Harrin
Dan Harrin
FFilament
Created by Mike on 9/13/2024 in #❓┊help
Implementing Content Security Policy Headers
Since v3 is not accepting feature requests, I would not merge it into there. I would be open to a v4 PR but do not expect it to be reviewed before v4 is released unless it introduces breaking changes. People have attempted this before, and failed. You may be able to get a very loose CSP config working. But you will not be able to get unsafe-eval, inline styles, etc working because Livewire does not support CSP.
38 replies
FFilament
Created by kool on 9/3/2024 in #❓┊help
Export Action Only Few Rows with GroupBy
I don't have time to help you, but all I will say is that I never intended it to be used with groupby so it was not built to accommodate that being in the query
10 replies
FFilament
Created by Matse on 8/20/2024 in #❓┊help
Dashboard home page not fully loading
105 also had issues with lazy relation managers, 106 reverts the original PR that caused all the problems and we will find a different solution
11 replies
FFilament
Created by BKF Dev on 8/20/2024 in #❓┊help
Bug in v3.2.105
v3.2.106 reverts the original PR that caused the problems to start so that should be safe to upgrade to @BKF Dev @DJ SneezyCheese @Stevee @Zen Dev @null;void
28 replies
FFilament
Created by Matse on 8/20/2024 in #❓┊help
Dashboard home page not fully loading
you dont need to anymore, just update to 105
11 replies
FFilament
Created by Matse on 8/20/2024 in #❓┊help
Dashboard home page not fully loading
does it fix the problem?
11 replies
FFilament
Created by Matse on 8/20/2024 in #❓┊help
Dashboard home page not fully loading
Go into /vendor and replace the contents of loading-section.blade.php with
@php
if ((! isset($columnSpan)) || (! is_array($columnSpan))) {
$columnSpan = [
'default' => $columnSpan ?? null,
];
}

if ((! isset($columnStart)) || (! is_array($columnStart))) {
$columnStart = [
'default' => $columnStart ?? null,
];
}

$height ??= '8rem';
@endphp

<x-filament::grid.column
:default="$columnSpan['default'] ?? 1"
:sm="$columnSpan['sm'] ?? null"
:md="$columnSpan['md'] ?? null"
:lg="$columnSpan['lg'] ?? null"
:xl="$columnSpan['xl'] ?? null"
:twoXl="$columnSpan['2xl'] ?? null"
:defaultStart="$columnStart['default'] ?? null"
:smStart="$columnStart['sm'] ?? null"
:mdStart="$columnStart['md'] ?? null"
:lgStart="$columnStart['lg'] ?? null"
:xlStart="$columnStart['xl'] ?? null"
:twoXlStart="$columnStart['2xl'] ?? null"
wire:replace
class="fi-loading-section"
>
<x-filament::section class="animate-pulse" style="height: {{ $height }}" />
</x-filament::grid.column>
@php
if ((! isset($columnSpan)) || (! is_array($columnSpan))) {
$columnSpan = [
'default' => $columnSpan ?? null,
];
}

if ((! isset($columnStart)) || (! is_array($columnStart))) {
$columnStart = [
'default' => $columnStart ?? null,
];
}

$height ??= '8rem';
@endphp

<x-filament::grid.column
:default="$columnSpan['default'] ?? 1"
:sm="$columnSpan['sm'] ?? null"
:md="$columnSpan['md'] ?? null"
:lg="$columnSpan['lg'] ?? null"
:xl="$columnSpan['xl'] ?? null"
:twoXl="$columnSpan['2xl'] ?? null"
:defaultStart="$columnStart['default'] ?? null"
:smStart="$columnStart['sm'] ?? null"
:mdStart="$columnStart['md'] ?? null"
:lgStart="$columnStart['lg'] ?? null"
:xlStart="$columnStart['xl'] ?? null"
:twoXlStart="$columnStart['2xl'] ?? null"
wire:replace
class="fi-loading-section"
>
<x-filament::section class="animate-pulse" style="height: {{ $height }}" />
</x-filament::grid.column>
11 replies
FFilament
Created by Matse on 8/20/2024 in #❓┊help
Dashboard home page not fully loading
i still cant reproduce personally, but try v3.2.104 as I think I can imagine a dom diffing issue that might cause this
11 replies
FFilament
Created by Matse on 8/20/2024 in #❓┊help
Dashboard home page not fully loading
Can you try reproducing this in a new app and opening an issue with a reproduction repository?
11 replies
FFilament
Created by Sangram_11 on 7/30/2024 in #❓┊help
Queue related issue
the sync queue driver is not a queue, it executes the jobs syncronously
6 replies
FFilament
Created by Sangram_11 on 7/30/2024 in #❓┊help
Queue related issue
most people answering questions would probably have an idea
6 replies
FFilament
Created by Sangram_11 on 7/30/2024 in #❓┊help
Queue related issue
please read #✅┊rules, there was absolutely no need to @ me
6 replies
FFilament
Created by Sangram_11 on 7/30/2024 in #❓┊help
Queue related issue
using the sync queue driver
6 replies
FFilament
Created by atabegruslan on 7/24/2024 in #❓┊help
How loop a list in View item view (infolist)?
indeed, does it work?
12 replies
FFilament
Created by atabegruslan on 7/24/2024 in #❓┊help
How loop a list in View item view (infolist)?
I think @Hugo means accessing the $infolist->getRecord() and looping through the relationship, which is another option
12 replies
FFilament
Created by atabegruslan on 7/24/2024 in #❓┊help
How loop a list in View item view (infolist)?
have you seen the repeatableentry?
12 replies
FFilament
Created by Trauma Zombie on 7/9/2024 in #❓┊help
How to close notification slide-over on action
its probably a bug, please open an issue with a reproduction repository
16 replies
FFilament
Created by Trauma Zombie on 7/9/2024 in #❓┊help
How to close notification slide-over on action
and if you disable spa mode it works?
16 replies
FFilament
Created by Trauma Zombie on 7/9/2024 in #❓┊help
How to close notification slide-over on action
are you using spa mode
16 replies
FFilament
Created by GavTheDev on 6/27/2024 in #❓┊help
Plugin count on filamentphp.com always off by 2
269 is the number of v3 plugins, 271 us the number including 2 v2-only plugins
3 replies