diff options
| author | jpl | 2017-05-22 17:05:31 +0200 | 
|---|---|---|
| committer | jpl | 2017-05-22 17:05:31 +0200 | 
| commit | a8076c2632bc519cf524e668bf74ca6d7859b0d9 (patch) | |
| tree | 0edd6862e696b9897c9ab7d1df0f871ec14bea3c | |
| parent | 447c954b74045d52b449adb252fd2f20438e4669 (diff) | |
| download | chouette-core-a8076c2632bc519cf524e668bf74ca6d7859b0d9.tar.bz2 | |
Refs #3406: fix required <abbr> integration on ttCombination
| -rw-r--r-- | app/views/time_table_combinations/_form.html.slim | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/app/views/time_table_combinations/_form.html.slim b/app/views/time_table_combinations/_form.html.slim index 37e072bbc..3716f6713 100644 --- a/app/views/time_table_combinations/_form.html.slim +++ b/app/views/time_table_combinations/_form.html.slim @@ -3,7 +3,7 @@      .col-lg-12        .form-group.has_switch          = f.label :combined_type, class: 'col-sm-4 control-label required' do -          = 'Type de calendriers' +          = 'Type de calendriers '            abbr title='Champ requis' *          = f.input :combined_type, as: :boolean, checked_value: 'time_table', unchecked_value: 'calendar', required: false, label: content_tag(:span, t("time_table_combinations.combined_type.#{@combination.combined_type}"), class: 'switch-label', data: { checkedValue: 'Calendriers', uncheckedValue: 'Modèles de calendriers' }), wrapper_html: { class: 'col-sm-8' } | 
