diff --git a/app/assets/stylesheets/admin.scss b/app/assets/stylesheets/admin.scss index f08d14fda..e51f9f4e2 100644 --- a/app/assets/stylesheets/admin.scss +++ b/app/assets/stylesheets/admin.scss @@ -215,6 +215,10 @@ $sidebar-active: #f4fcd0; thead { color: #fff; + + a { + color: inherit; + } } th { diff --git a/app/views/admin/budget_investments/_investments.html.erb b/app/views/admin/budget_investments/_investments.html.erb index 81b46f9d3..d56cc65f8 100644 --- a/app/views/admin/budget_investments/_investments.html.erb +++ b/app/views/admin/budget_investments/_investments.html.erb @@ -35,9 +35,9 @@
| <%= t("admin.budget_investments.index.list.id") %> | -<%= t("admin.budget_investments.index.list.title") %> | -<%= t("admin.budget_investments.index.list.supports") %> | +<%= link_to t("admin.budget_investments.index.list.id"), admin_budget_budget_investments_path(sort_by: "id") %> | +<%= link_to t("admin.budget_investments.index.list.title"), admin_budget_budget_investments_path(sort_by: "title") %> | +<%= link_to t("admin.budget_investments.index.list.supports"), admin_budget_budget_investments_path(sort_by: "supports") %> | <%= t("admin.budget_investments.index.list.admin") %> | <%= t("admin.budget_investments.index.list.valuation_group") %> |
|---|