Skip to content

Commit

Permalink
fix: cannot get signed id error
Browse files Browse the repository at this point in the history
  • Loading branch information
diegosteiner committed Dec 29, 2023
1 parent 891a118 commit 3c6526c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/manage/organisations/_form.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
= f.text_field :slug if current_user.role_admin?
= f.text_field :name
div[v-pre]= f.text_area :address, rows: 4
= f.file_field :logo, help: organisation.logo.attached? && image_tag(organisation.logo, width: 120)
= f.file_field :logo, help: organisation.logo.present? && organisation.logo.persisted? && image_tag(organisation.logo, width: 120)
= f.collection_select :locale, Organisation.locales, :first, :first

= f.fields_for :settings, @organisation.settings || OrganisationSettings.new do |sf|
Expand Down

0 comments on commit 3c6526c

Please sign in to comment.