diff options
| author | jpl | 2017-06-30 10:59:46 +0200 |
|---|---|---|
| committer | jpl | 2017-06-30 10:59:46 +0200 |
| commit | d731cf204fd46a0fdd7fcd2c01b812ee117e0ea3 (patch) | |
| tree | 22afc6159bcb77c63b296a606795f746feb32fd4 | |
| parent | d24a3689d6ba1a575e8cc3e506f04b471cc4c977 (diff) | |
| download | chouette-core-d731cf204fd46a0fdd7fcd2c01b812ee117e0ea3.tar.bz2 | |
Updating delete link on link helper
| -rw-r--r-- | app/helpers/links_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/links_helper.rb b/app/helpers/links_helper.rb index 683b66a52..4fb7a797d 100644 --- a/app/helpers/links_helper.rb +++ b/app/helpers/links_helper.rb @@ -1,5 +1,5 @@ module LinksHelper def destroy_link_content(translation_key = 'actions.destroy') - content_tag(:span, nil, class: 'fa fa-trash') + t(translation_key) + content_tag(:span, nil, class: 'fa fa-trash mr-xs') + t(translation_key) end end |
