Fix broken border on applications list (#32147)

This commit is contained in:
Matt Jankowski 2024-10-01 09:38:29 -04:00 committed by GitHub
parent 7b92cf3b47
commit f73787a4b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View File

@ -18,7 +18,9 @@
- @applications.each do |application|
%tr
%td= link_to application.name, settings_application_path(application)
%th= application.scopes
%th
- application.scopes.to_s.split.each do |scope|
= tag.samp(scope, class: 'information-badge', title: t("doorkeeper.scopes.#{scope}"))
%td
= table_link_to 'close', t('doorkeeper.applications.index.delete'), settings_application_path(application), method: :delete, data: { confirm: t('doorkeeper.applications.confirmations.destroy') }

View File

@ -15,10 +15,11 @@
%td
%code= @application.secret
%tr
%th{ rowspan: 2 }= t('applications.your_token')
%th= t('applications.your_token')
%td
%code= current_user.token_for_app(@application).token
%tr
%th
%td= table_link_to 'refresh', t('applications.regenerate_token'), regenerate_settings_application_path(@application), method: :post
%hr/