aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjpl2017-06-30 10:59:46 +0200
committerjpl2017-06-30 10:59:46 +0200
commitd731cf204fd46a0fdd7fcd2c01b812ee117e0ea3 (patch)
tree22afc6159bcb77c63b296a606795f746feb32fd4
parentd24a3689d6ba1a575e8cc3e506f04b471cc4c977 (diff)
downloadchouette-core-d731cf204fd46a0fdd7fcd2c01b812ee117e0ea3.tar.bz2
Updating delete link on link helper
-rw-r--r--app/helpers/links_helper.rb2
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