aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2018-01-25 12:35:35 +0100
committerTeddy Wing2018-01-25 12:35:35 +0100
commite8f9998fcce5746a9d9f21525a23410d08d1ce08 (patch)
tree83bc77c82b03fe773239e49f9f99494b9f7c371c
parenta0d964313c9922f9a00676b211c7ca5600e0cfaa (diff)
downloadchouette-core-e8f9998fcce5746a9d9f21525a23410d08d1ce08.tar.bz2
referential_stop_areas/_form: Fix syntax error
Remove the extra `}` from the end of this line as it was a syntax error and caused the page to break. Refs #5586
-rw-r--r--app/views/referential_stop_areas/_form.html.slim2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/referential_stop_areas/_form.html.slim b/app/views/referential_stop_areas/_form.html.slim
index 50f5d4aaf..8181ec3f3 100644
--- a/app/views/referential_stop_areas/_form.html.slim
+++ b/app/views/referential_stop_areas/_form.html.slim
@@ -7,7 +7,7 @@
= form.inputs do
= form.input :id, as: :hidden
= form.input :name, :input_html => { :title => t("formtastic.titles#{format_restriction_for_locales(@referential)}.stop_area.name")}
- = form.input :stop_area_type, as: :select, :input_html => { :disabled => !@stop_area.new_record? }, :collection => Chouette::StopArea.area_type.options, :include_blank => false }
+ = form.input :stop_area_type, as: :select, :input_html => { :disabled => !@stop_area.new_record? }, :collection => Chouette::StopArea.area_type.options, :include_blank => false
.location_info
h3 = t("stop_areas.stop_area.localisation")