mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
Commit 4953c69123 introduced a bug that
the save button is not activated when changing enterprise fields.
https://github.com/openfoodfoundation/openfoodnetwork/issues/2195
This is reverting the change and fixes #2195.
Sadly, it re-opens
https://github.com/openfoodfoundation/openfoodnetwork/issues/1216.
But that one is not as severe as the current bug.
20 lines
970 B
Plaintext
20 lines
970 B
Plaintext
-# Not all inputs are ng inputs, they don't make the ng-form dirty on change.
|
|
-# ng-change is only valid for inputs, not for a form.
|
|
-# So we use onchange and have to get the scope to access the ng controller
|
|
= form_for [main_app, :admin, @enterprise], html: { name: "enterprise_form",
|
|
onchange: "angular.element(enterprise_form).scope().setFormDirty()",
|
|
"ng-controller" => 'enterpriseCtrl',
|
|
"ng-cloak" => true } do |f|
|
|
|
|
%save-bar{ dirty: "enterprise_form.$dirty", persist: "true" }
|
|
%input.red{ type: "button", value: t(:update), ng: { click: "submit()", disabled: "!enterprise_form.$dirty" } }
|
|
%input{ type: "button", ng: { value: "enterprise_form.$dirty ? '#{t(:cancel)}' : '#{t(:close)}'", click: "cancel('#{main_app.admin_enterprises_path}')" } }
|
|
|
|
.row
|
|
.sixteen.columns.alpha
|
|
.four.columns.alpha
|
|
= render 'admin/shared/side_menu'
|
|
.one.column
|
|
.eleven.columns.omega.fullwidth_inputs
|
|
= render 'form', f: f
|