views: add identifiers to fooker links
In Sentry, when an `ActionController::InvalidAuthenticityToken` error occurs, the breadcrumbs mention that before hitting the error, the user clicked on one of those links. Unfortunately we don't know which one. For debugging purposes, adding classes to the links should allow us to see which links users are navigating to.
This commit is contained in:
parent
1fc1a3a6a5
commit
9e76135b27
1 changed files with 6 additions and 6 deletions
|
@ -1,7 +1,7 @@
|
|||
%ul.footer-row.footer-bottom-line.footer-site-links
|
||||
%li>= link_to "Accessibilité", accessibilite_path
|
||||
%li>= link_to "CGU", CGU_URL, target: "_blank", rel: "noopener noreferrer"
|
||||
%li>= link_to "Mentions légales", MENTIONS_LEGALES_URL, target: "_blank", rel: "noopener noreferrer"
|
||||
%li>= link_to 'Documentation', DOC_URL
|
||||
%li>= contact_link "Contact technique", dossier_id: dossier&.id
|
||||
%li>= link_to 'Aide', FAQ_URL
|
||||
%li.footer-link-accessibilite>= link_to "Accessibilité", accessibilite_path
|
||||
%li.footer-link-cgu>= link_to "CGU", CGU_URL, target: "_blank", rel: "noopener noreferrer"
|
||||
%li.footer-link-mentions-legales>= link_to "Mentions légales", MENTIONS_LEGALES_URL, target: "_blank", rel: "noopener noreferrer"
|
||||
%li.footer-link-doc>= link_to 'Documentation', DOC_URL
|
||||
%li.footer-link-contact>= contact_link "Contact technique", dossier_id: dossier&.id
|
||||
%li.footer-link-aide>= link_to 'Aide', FAQ_URL
|
||||
|
|
Loading…
Reference in a new issue