Disable Turbo for settings forms
This commit is contained in:
parent
dc91d91c2e
commit
8d1e32e0f3
|
@ -1,6 +1,6 @@
|
||||||
.card
|
.card
|
||||||
.card-body
|
.card-body
|
||||||
= bootstrap_form_for(resource, as: resource_name, url: "/settings/account", html: { method: :put }) do |f|
|
= bootstrap_form_for(resource, as: resource_name, url: "/settings/account", html: { method: :put }, data: { turbo: false}) do |f|
|
||||||
= render "modal/password", f: f
|
= render "modal/password", f: f
|
||||||
= render "devise/shared/error_messages", resource: resource
|
= render "devise/shared/error_messages", resource: resource
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
.input-group-append
|
.input-group-append
|
||||||
%button.btn.btn-danger{ type: "button", data: { id: rule.id } }= t(".actions.remove")
|
%button.btn.btn-danger{ type: "button", data: { id: rule.id } }= t(".actions.remove")
|
||||||
.form-group
|
.form-group
|
||||||
%form
|
%form{ data: { turbo: false } }
|
||||||
.input-group
|
.input-group
|
||||||
%input.form-control#new-rule-text{ placeholder: t(".placeholder") }
|
%input.form-control#new-rule-text{ placeholder: t(".placeholder") }
|
||||||
.input-group-append
|
.input-group-append
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
.card
|
.card
|
||||||
.card-body
|
.card-body
|
||||||
= bootstrap_form_for(current_user, url: settings_privacy_path, method: :patch) do |f|
|
= bootstrap_form_for(current_user, url: settings_privacy_path, method: :patch, data: { turbo: false }) do |f|
|
||||||
= f.check_box :privacy_allow_anonymous_questions
|
= f.check_box :privacy_allow_anonymous_questions
|
||||||
= f.check_box :privacy_allow_public_timeline
|
= f.check_box :privacy_allow_public_timeline
|
||||||
= f.check_box :privacy_allow_stranger_answers
|
= f.check_box :privacy_allow_stranger_answers
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
.card
|
.card
|
||||||
.card-body
|
.card-body
|
||||||
= bootstrap_form_for(current_user, url: settings_profile_picture_path, html: { multipart: true }, method: :patch) do |f|
|
= bootstrap_form_for(current_user, url: settings_profile_picture_path, html: { multipart: true }, method: :patch, data: { turbo: false }) do |f|
|
||||||
|
|
||||||
.media#profile-picture-media
|
.media#profile-picture-media
|
||||||
.pull-left
|
.pull-left
|
||||||
|
@ -35,7 +35,7 @@
|
||||||
= f.primary
|
= f.primary
|
||||||
.card
|
.card
|
||||||
.card-body
|
.card-body
|
||||||
= bootstrap_form_for(current_user.profile, html: { multipart: true }, method: :patch) do |f|
|
= bootstrap_form_for(current_user.profile, html: { multipart: true }, method: :patch, data: { turbo: false }) do |f|
|
||||||
|
|
||||||
= f.text_field :display_name, autocomplete: :name
|
= f.text_field :display_name, autocomplete: :name
|
||||||
|
|
||||||
|
|
|
@ -6,8 +6,8 @@
|
||||||
|
|
||||||
- if current_user.theme
|
- if current_user.theme
|
||||||
.pull-right
|
.pull-right
|
||||||
= bootstrap_form_for(current_user.theme || Theme.new, html: { id: "update" }, method: :patch) do |f|
|
|
||||||
= link_to t(".delete"), settings_theme_path, data: { turbo_confirm: t("voc.confirm"), turbo_method: :delete }, tabindex: -1, class: "btn btn-danger"
|
= link_to t(".delete"), settings_theme_path, data: { turbo_confirm: t("voc.confirm"), turbo_method: :delete }, tabindex: -1, class: "btn btn-danger"
|
||||||
|
= bootstrap_form_for(current_user.theme || Theme.new, html: { id: "update" }, method: :patch, data: { turbo: false }) do |f|
|
||||||
.card
|
.card
|
||||||
.card-body
|
.card-body
|
||||||
%h2= t(".general.heading")
|
%h2= t(".general.heading")
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
= t(".setup_key")
|
= t(".setup_key")
|
||||||
%code= current_user.otp_secret_key.scan(/.{4}/).flatten.join(" ")
|
%code= current_user.otp_secret_key.scan(/.{4}/).flatten.join(" ")
|
||||||
.totp-setup__content.col
|
.totp-setup__content.col
|
||||||
= bootstrap_form_for(current_user, url: settings_two_factor_authentication_otp_authentication_path) do |f|
|
= bootstrap_form_for(current_user, url: settings_two_factor_authentication_otp_authentication_path, data: { turbo: false }) do |f|
|
||||||
%p= t(".app.none")
|
%p= t(".app.none")
|
||||||
%ul.list-unstyled.pl-3
|
%ul.list-unstyled.pl-3
|
||||||
%li
|
%li
|
||||||
|
|
Loading…
Reference in New Issue