diff --git a/ghost/admin/app/components/posts/post-activity-feed.hbs b/ghost/admin/app/components/posts/post-activity-feed.hbs
index 2ff443ee7f..5b37ba4e74 100644
--- a/ghost/admin/app/components/posts/post-activity-feed.hbs
+++ b/ghost/admin/app/components/posts/post-activity-feed.hbs
@@ -40,7 +40,7 @@
                 </div>
             </div>
         {{else}}
-            <div class="gh-dashboard-list-body {{if (eq this.eventType "conversion") "gh-dashboard-list-four-cols" }}">
+            <div class="gh-dashboard-list-body {{if (eq this.eventType "clicked") "gh-dashboard-list-larger-cols" }} {{if (eq this.eventType "conversion") "gh-dashboard-list-four-cols" }}">
                 {{#each eventsFetcher.data as |event|}}
                     {{#let (parse-member-event event) as |parsedEvent|}}
                         <div class="gh-dashboard-list-item">
@@ -53,6 +53,10 @@
                                 <span class="gh-dashboard-list-subtext">
                                     <span class="gh-members-activity-description">
                                         <span class="gh-members-activity-event-text">{{capitalize-first-letter parsedEvent.action}}</span>
+                                        {{#if parsedEvent.url}}
+                                            <span class="gh-members-activity-event-dash">–</span>
+                                            <a class="ghost-members-activity-object-link" href="{{parsedEvent.url}}" target="_blank" rel="noopener noreferrer">{{parsedEvent.description}}</a>
+                                        {{/if}}
                                     </span>
                                 </span>
                             </div>
diff --git a/ghost/admin/app/styles/layouts/content.css b/ghost/admin/app/styles/layouts/content.css
index f45de1b84c..0f99099f80 100644
--- a/ghost/admin/app/styles/layouts/content.css
+++ b/ghost/admin/app/styles/layouts/content.css
@@ -1669,10 +1669,22 @@ a.gh-post-list-cta.stats.is-hovered:hover > * {
     grid-template-columns: 40% 40% 20%;
 }
 
+.gh-tabs-analytics .gh-dashboard-list-larger-cols .gh-dashboard-list-item {
+    grid-template-columns: 26% 54% 20%;
+}
+
 .gh-tabs-analytics .gh-dashboard-list-four-cols .gh-dashboard-list-item {
     grid-template-columns: 35% 25% 20% 20%;
 }
 
+.gh-post-activity-feed .gh-members-activity-description a {
+    font-weight: 500;
+}
+
+.gh-post-activity-feed .gh-members-activity-description a:hover {
+    color: #697989;
+}
+
 @media (max-width: 1200px) {
     .gh-tabs-analytics .tab{
         padding: 8px 10px;