From c29e459a10829edda33789bc6ab5d26212c04a44 Mon Sep 17 00:00:00 2001 From: Yoga Pangestu Date: Thu, 26 Mar 2026 10:42:25 +0700 Subject: [PATCH] refactor: adjust chart heading by removing "(Top 10)" and set column span to 1. --- .../Widgets/Charts/IssueSentimentByDepartmentChart.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Filament/Widgets/Charts/IssueSentimentByDepartmentChart.php b/app/Filament/Widgets/Charts/IssueSentimentByDepartmentChart.php index e966882..04f935e 100644 --- a/app/Filament/Widgets/Charts/IssueSentimentByDepartmentChart.php +++ b/app/Filament/Widgets/Charts/IssueSentimentByDepartmentChart.php @@ -14,11 +14,11 @@ class IssueSentimentByDepartmentChart extends ChartWidget { use HasWidgetShield, InteractsWithPageFilters; - protected ?string $heading = 'Perbandingan Sentimen Isu Per Perangkat Daerah (Top 10)'; + protected ?string $heading = 'Perbandingan Sentimen Isu Per Perangkat Daerah'; protected static ?int $sort = 17; - protected int|string|array $columnSpan = 'full'; + protected int|string|array $columnSpan = 1; protected ?string $pollingInterval = null;