We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72c4ad4 commit c5f8e09Copy full SHA for c5f8e09
src/Widgets/PulseSlowJobs.php
@@ -14,13 +14,16 @@ class PulseSlowJobs extends Widget
14
15
protected string $ignoreAfter;
16
17
+ protected int $rows;
18
+
19
public function __construct()
20
{
21
$config = config('filament-laravel-pulse.components.slow-jobs');
22
$this->columnSpan = $config['columnSpan'] ?? [
23
'md' => 5,
24
'xl' => 5,
25
];
26
+ $this->rows = $config['rows'] ?? 2;
27
$this->cols = $config['cols'] ?? 'full';
28
$this->ignoreAfter = $config['ignoreAfter'] ?? '1 hour';
29
self::$isDiscovered = $config['isDiscovered'] ?? true;
0 commit comments