From 814579d58f5c110e1f649c6b4997df58cf79315e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Thu, 10 Jan 2019 15:08:17 +0100 Subject: [PATCH] Simplify interpolation It's OK ot use single quotes inside a string with double quotes in order to avoid escape characters. --- app/helpers/budget_investments_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/helpers/budget_investments_helper.rb b/app/helpers/budget_investments_helper.rb index 810856057..419efe6b4 100644 --- a/app/helpers/budget_investments_helper.rb +++ b/app/helpers/budget_investments_helper.rb @@ -12,7 +12,7 @@ module BudgetInvestmentsHelper translation = t("admin.budget_investments.index.list.#{column}") link_to( - "#{translation} ".html_safe, + "#{translation} ".html_safe, admin_budget_budget_investments_path(sort_by: column, direction: direction) ) end