about summary refs log tree commit diff
path: root/app/views/admin/accounts
diff options
context:
space:
mode:
authorMatt Jankowski <mjankowski@thoughtbot.com>2017-04-19 22:00:02 -0400
committerEugen <eugen@zeonfederated.com>2017-04-20 04:00:02 +0200
commit7f8044d91302adbece04db9586384b1a79ef1a6e (patch)
tree3e7810a34a5a026ca564b08f17b50e832be3fc0c /app/views/admin/accounts
parent66b39ccaedd86030e0f1299b52b6daab43560b18 (diff)
Link to profile/feed/salmon from admin/accounts show page (#2186)
Diffstat (limited to 'app/views/admin/accounts')
-rw-r--r--app/views/admin/accounts/show.html.haml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/admin/accounts/show.html.haml b/app/views/admin/accounts/show.html.haml
index ebf2b5ac1..75b69b337 100644
--- a/app/views/admin/accounts/show.html.haml
+++ b/app/views/admin/accounts/show.html.haml
@@ -30,10 +30,10 @@
     - else
       %tr
         %th= t('admin.accounts.profile_url')
-        %td= link_to @account.url
+        %td= link_to @account.url, @account.url
       %tr
         %th= t('admin.accounts.feed_url')
-        %td= link_to @account.remote_url
+        %td= link_to @account.remote_url, @account.remote_url
       %tr
         %th= t('admin.accounts.push_subscription_expires')
         %td
@@ -43,7 +43,7 @@
             = t('admin.accounts.not_subscribed')
       %tr
         %th= t('admin.accounts.salmon_url')
-        %td= link_to @account.salmon_url
+        %td= link_to @account.salmon_url, @account.salmon_url
 
     %tr
       %th= t('admin.accounts.follows')