ec-cube icon indicating copy to clipboard operation
ec-cube copied to clipboard

html5のエラーが表示されない

Open nobuhiko opened this issue 2 years ago • 3 comments

概要(Overview)

店舗設定、基本設定で店名を未入力にしてもエラーメッセージが出ない

期待する内容(Expect) or 要望 (Requirement)

エラーメッセージが出る

再現手順(Procedure)

店名を未入力にして登録ボタンを押す

環境 (environment)

  • EC-CUBE: 4.2
  • PHP: 7.x.x
  • DB:
    • PostgreSQL x.x.x
    • MySQL x.x.x

関連情報 (Ref)

nobuhiko avatar Aug 27 '22 07:08 nobuhiko

スクロールが発生する際に、html5のエラーが表示されないようですね。 ここの項目だけではないかと思います。

chihiro-adachi avatar Aug 29 '22 03:08 chihiro-adachi

他には、インストーラやコンテンツ管理>ページ管理等でも同様の事象を確認しました。

chihiro-adachi avatar Aug 29 '22 04:08 chihiro-adachi

html5の仕様なのかまではわからないけど以下のように書くと表示されない

html, body {
  scroll-behavior: smooth;
}

↓にすれば表示されるが固定ヘッダーがあるので挙動がおかしくなる

body {
  scroll-behavior: smooth;
}

nobuhiko avatar Aug 31 '22 01:08 nobuhiko