この Rails アプリが 2 年以上正常に動作していた後、1 ページだけでこの 1 つのエラーが発生し始めました。
ActionView::TemplateError (undefined method `[]' for #<Enumerable::Enumerator:0xb25fbc4>) on line #10 of app/views/notes/_form.rhtml:
7: <%= @n.text_field 'note', :size => 55 %>
8: </label>
9: <%= link_to_function('Custom Note', nil, :id => "custom_link", :class => 'control') do |page|
10: page[:custom].toggle(:appear)
11: page[:presets].toggle
12: page[:custom_link].replace_html "Preset/Custom"
13: end %>
10 行目と 11 行目のトグルのある行をコメント アウトすると、ページが読み込まれます。しかし、明らかに私が必要とすることをしません。
これを修正する方法について何か提案はありますか?