Closed mikoto2000 closed 1 year ago
id や登録日・更新日の項目が消える。
if request.path_info.include?("edit") ではなく if todo.persisted? で判定するように修正。
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
1edc338d465cb629392ad52abc057c5bb8fdcfe4 で対応。
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