diff options
| author | Teddy Wing | 2018-01-25 12:35:35 +0100 | 
|---|---|---|
| committer | Zog | 2018-01-25 17:18:03 +0100 | 
| commit | 6a00c37a43648fdeee5d6eceb92b52986e06bb31 (patch) | |
| tree | 8e82543339628faea031c73e2e6c3860f1603e78 /app | |
| parent | 1ca38572b94ca174634a87c34eaafd9189fcd7eb (diff) | |
| download | chouette-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.slim | 2 | 
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") | 
