Browse Source

Open authorized application in a new window (#2250)

Like it's already done when you click on an application from a toot, it's opening in a new window.
0254ee9795/app/views/stream_entries/_detailed_status.html.haml (L41)
closed-social-glitch-2
Jérémy Benoist 7 years ago
committed by Eugen
parent
commit
b3329c362e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/views/oauth/authorized_applications/index.html.haml

+ 1
- 1
app/views/oauth/authorized_applications/index.html.haml View File

@ -15,7 +15,7 @@
- if application.website.blank?
= application.name
- else
= link_to application.name, application.website
= link_to application.name, application.website, target: '_blank', rel: 'noopener'
%th= application.scopes.map { |scope| t(scope, scope: [:doorkeeper, :scopes]) }.join('<br />').html_safe
%td= l application.created_at
%td

Loading…
Cancel
Save