diff options
| author | Teddy Wing | 2017-07-07 13:28:07 +0200 |
|---|---|---|
| committer | Teddy Wing | 2017-07-07 13:28:07 +0200 |
| commit | 38bdaa2311a24e51e5f73c2f46dc6002447e3b32 (patch) | |
| tree | bac31e5d137d99d460621ace6d37c0dfa5d433c2 | |
| parent | c91a0c34d1218b67e5aaca96f1140734baf7b7ec (diff) | |
| download | chouette-core-38bdaa2311a24e51e5f73c2f46dc6002447e3b32.tar.bz2 | |
referential_lines/show.html.slim: Fix syntax error
I had converted the double quotes that used to be here into single
quotes without thinking, and that doesn't work because there's an
apostrophe in the string. Thankfully the failing tests told me about the
error.
Refs #3479
| -rw-r--r-- | app/views/referential_lines/show.html.slim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/referential_lines/show.html.slim b/app/views/referential_lines/show.html.slim index 327906c9c..14e300aa2 100644 --- a/app/views/referential_lines/show.html.slim +++ b/app/views/referential_lines/show.html.slim @@ -76,7 +76,7 @@ sortable: false \ ), \ TableBuilderHelper::Column.new( \ - name: 'Arrêt d'arrivée', \ + name: "Arrêt d'arrivée", \ attribute: Proc.new{ |r| r.try(:stop_points).last.try(:stop_area).try(:name) }, \ sortable: false \ ), \ |
