Disable Turbo application-wide

This commit is contained in:
2023-04-16 03:03:03 +02:00
parent 71bc68efb3
commit 4a1fe657c0
3 changed files with 2 additions and 2 deletions

View File

@@ -35,7 +35,6 @@ module ApplicationHelper
def tabular_form_for(record, options = {}, &block)
options.merge! builder: TabularFormBuilder
options.merge! data: {turbo: false}
form_for(record, **options, &-> (f) { f.table_form_for(&block) })
end