mikoto2000 / ya-rails-template

Rails7 標準の scaffold に、いくつか機能を追加したテンプレートです。
MIT License
0 stars 0 forks source link

編集画面でバリデーションエラーが発生すると、フォームが新規作成の状態になる #19

Closed mikoto2000 closed 1 year ago

mikoto2000 commented 1 year ago

id や登録日・更新日の項目が消える。

if request.path_info.include?("edit") ではなく if todo.persisted? で判定するように修正。

以下のあたり。 https://github.com/mikoto2000/ya-rails-template/blob/5aad18891c8714e1a1b7338f837ecf80be02bbb2/templates/erb/scaffold/_form.html.erb.tt#L14 https://github.com/mikoto2000/ya-rails-template/blob/5aad18891c8714e1a1b7338f837ecf80be02bbb2/templates/erb/scaffold/_form.html.erb.tt#L68

mikoto2000 commented 1 year ago

1edc338d465cb629392ad52abc057c5bb8fdcfe4 で対応。