Skip to content

Commit

Permalink
fix #2998 管理画面 テキストエリアに自動で空白文字(改行)が入ってしまう問題を解決 (#2999)
Browse files Browse the repository at this point in the history
Co-authored-by: kato <kato@e-catchup.jp>
Co-authored-by: ryuring <egashira@catchup.co.jp>
  • Loading branch information
3 people committed Dec 30, 2023
1 parent 0bcb284 commit 28ee28f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/baser-core/config/bc_form.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
'radioWrapper' => '<span class="{{class}}">{{label}}</span>',
'radioFormGroup' => '<span class="{{groupClass}}">{{input}}</span>',
// Textarea input element,
'textarea' => "<textarea name=\"{{name}}\"{{attrs}}>\n{{value}}\n</textarea>",
'textarea' => "<textarea name=\"{{name}}\"{{attrs}}>\n{{value}}</textarea>",
// Container for submit buttons.
// 'submitContainer' => '<div class="submit">{{content}}</div>' NOTE: formAfterCreateにてデザインが崩れるため一旦コメントアウト
'submitContainer' => '{{content}}',
Expand Down

0 comments on commit 28ee28f

Please sign in to comment.