From f9712fad1b62e93961280243970c6ccff4d3e3ff Mon Sep 17 00:00:00 2001 From: James May Date: Thu, 5 Sep 2024 19:48:42 +1000 Subject: [PATCH] Direct link to each authorized_application entry with html anchor (#31677) Co-authored-by: Matt Jankowski --- app/views/oauth/authorized_applications/index.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/oauth/authorized_applications/index.html.haml b/app/views/oauth/authorized_applications/index.html.haml index b6819bbd72..eb544d079b 100644 --- a/app/views/oauth/authorized_applications/index.html.haml +++ b/app/views/oauth/authorized_applications/index.html.haml @@ -7,7 +7,7 @@ .applications-list - @applications.each do |application| - .applications-list__item + .applications-list__item{ id: dom_id(application) } - if application.website.present? = link_to application.name, application.website, target: '_blank', rel: 'noopener noreferrer', class: 'announcements-list__item__title' - else