Преглед изворни кода

Fix date format in StatsDashboardPage for weekly report type from "GGGG-[W]WW" to "gggg-[W]ww" to ensure consistency in date representation.

0es пре 3 недеља
родитељ
комит
fd3a540913
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/app/(dashboard)/statistics/dashboard/page.tsx

+ 1 - 1
src/app/(dashboard)/statistics/dashboard/page.tsx

@@ -725,7 +725,7 @@ const StatsDashboardPage: React.FC = () => {
               reportType === 0
                 ? "YYYY-MM-DD"
                 : reportType === 1
-                  ? "GGGG-[W]WW"
+                  ? "gggg-[W]ww"
                   : "YYYY-MM"
             }
           />