Merge pull request #3967 from betagouv/fix-disabled-new-procedure-save-button

Do not check for path availability when in the “new procedure” form
This commit is contained in:
Paul Chavard 2019-06-19 10:48:14 +02:00 committed by GitHub
commit 8f6a1d1d10
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,7 +6,4 @@
= form_for @procedure, url: { controller: 'admin/procedures', action: :create }, multipart: true do |f|
= render partial: 'informations', locals: { f: f }
.text-right
- if @availability.in?(Procedure::PATH_CAN_PUBLISH)
= f.button 'Valider', class: 'btn btn-info', id: 'save-procedure'
- else
= f.button 'Valider', class: 'btn btn-info', id: 'save-procedure', disabled: true
= f.button 'Valider', class: 'btn btn-info', id: 'save-procedure'