aboutsummaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorTeddy Wing2018-01-25 12:35:35 +0100
committerZog2018-01-25 17:18:03 +0100
commit6a00c37a43648fdeee5d6eceb92b52986e06bb31 (patch)
tree8e82543339628faea031c73e2e6c3860f1603e78 /app
parent1ca38572b94ca174634a87c34eaafd9189fcd7eb (diff)
downloadchouette-core-6a00c37a43648fdeee5d6eceb92b52986e06bb31.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
Diffstat (limited to 'app')
-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")