Skip to content

Commit

Permalink
fix #4133, fix #4134, fix #4135 インストール時から入っているお問い合わせのメールフィールド「マルチチェック…
Browse files Browse the repository at this point in the history
…ボックス」「セレクトボックス」「ラジオボタン」の項目を編集するとエラーになる問題を解消
  • Loading branch information
RyoK513 authored Mar 3, 2025
1 parent 4d41246 commit c815092
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/bc-mail/config/Seeds/MailFieldsSeed.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public function run(): void
'source' => '男性|女性',
'size' => 0,
'text_rows' => 0,
'maxlength' => 0,
'maxlength' => NULL,
'options' => '',
'class' => '',
'default_value' => '',
Expand Down Expand Up @@ -346,7 +346,7 @@ public function run(): void
'source' => '資料請求|問い合わせ|その他',
'size' => 0,
'text_rows' => 0,
'maxlength' => 0,
'maxlength' => NULL,
'options' => '',
'class' => '',
'default_value' => '',
Expand Down Expand Up @@ -408,7 +408,7 @@ public function run(): void
'source' => '検索エンジン|web広告|紙面広告|求人案内|その他',
'size' => 0,
'text_rows' => 0,
'maxlength' => 0,
'maxlength' => NULL,
'options' => '',
'class' => '',
'default_value' => '',
Expand Down

0 comments on commit c815092

Please sign in to comment.