Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

管理画面>コンテンツ管理>新着情報で入力必須バッジがない #6050

Closed
dotani1111 opened this issue Oct 27, 2023 · 1 comment
Labels
bug:Low bug good-first-issue Good for newcomers/簡単に修正できそうなもの
Milestone

Comments

@dotani1111
Copy link
Contributor

概要(Overview)

管理画面>コンテンツ管理>新着情報の必須入力欄(公開日時,タイトル)に、入力必須バッジがありません。

画面
スクリーンショット 2023-10-27 10 23 46

日付の入力フォーム

->add('publish_date', DateTimeType::class, [
'widget' => 'single_text',
'input' => 'datetime',
'years' => range($this->eccubeConfig['eccube_news_start_year'], date('Y') + 3),
'with_seconds' => true,
'constraints' => [
new Assert\NotBlank(),
new Assert\Range([
'min'=> '0003-01-01',
'minMessage' => 'form_error.out_of_range',

titleの入力フォーム

->add('title', TextType::class, [
'required' => true,
'constraints' => [
new Assert\NotBlank(),
new Assert\Length(['max' => $this->eccubeConfig['eccube_mtext_len']]),

再現手順(Procedure)

管理画面>コンテンツ管理>新着情報を表示する。

環境(Environment)

EC-Cubeの4.2で再現確認したが、おそらく以前からある。

@dotani1111
Copy link
Contributor Author

マージ済みのため、クローズします。

@dotani1111 dotani1111 added this to the 4.3.0 milestone Jan 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug:Low bug good-first-issue Good for newcomers/簡単に修正できそうなもの
Projects
None yet
Development

No branches or pull requests

1 participant