浏览代码

Merge pull request #76 from andrewdwallo/fix/fiscal-year-end-localization

Fix #75
3.x
Andrew Wallo 11 个月前
父节点
当前提交
8166db5a25
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      app/Filament/Company/Clusters/Settings/Pages/Localization.php

+ 1
- 1
app/Filament/Company/Clusters/Settings/Pages/Localization.php 查看文件

@@ -184,7 +184,7 @@ class Localization extends Page
184 184
                                 ->softRequired()
185 185
                                 ->columnSpan(1)
186 186
                                 ->options(function (Get $get) {
187
-                                    $month = $get('fiscal_year_end_month');
187
+                                    $month = (int) $get('fiscal_year_end_month');
188 188
 
189 189
                                     $daysInMonth = now()->month($month)->daysInMonth;
190 190
 

正在加载...
取消
保存