Open footer description links in the same window

This is a funny one, because we were accidentally opening them in the
same window without intending to do so since commit 928312e21, since the
`sanitize` method removes the `target` attribute. So the test we're
adding already passed without these changes.
This commit is contained in:
Javi Martín
2023-10-15 17:38:19 +02:00
parent 05345fb43c
commit 8053cc5e1c
2 changed files with 15 additions and 4 deletions

View File

@@ -8,12 +8,10 @@ class Layout::FooterComponent < ApplicationComponent
private
def open_source_link
link_to(t("layouts.footer.open_source"), t("layouts.footer.open_source_url"), target: "_blank",
rel: "nofollow")
link_to(t("layouts.footer.open_source"), t("layouts.footer.open_source_url"), rel: "nofollow")
end
def repository_link
link_to(t("layouts.footer.consul"), t("layouts.footer.consul_url"), target: "_blank",
rel: "nofollow")
link_to(t("layouts.footer.consul"), t("layouts.footer.consul_url"), rel: "nofollow")
end
end