diff --git a/CHANGELOG.md b/CHANGELOG.md index 64898e30a..b24d855ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ - Updated landing page, use config_cache. ([54920294](https://github.com/pixelfed/pixelfed/commit/54920294)) - Updated Timeline, implement suggested post opt out. ([66750d34](https://github.com/pixelfed/pixelfed/commit/66750d34)) - Updated Notification component, add at (@) symbol for remote profiles and local urls for remote posts and profile. ([aafd6a21](https://github.com/pixelfed/pixelfed/commit/aafd6a21)) +- Updated Activity component, add at (@) symbol for remote profiles and local urls for remote posts and profile. ([a2211815](https://github.com/pixelfed/pixelfed/commit/a2211815)) - ([](https://github.com/pixelfed/pixelfed/commit/)) ## [v0.11.0 (2021-06-01)](https://github.com/pixelfed/pixelfed/compare/v0.10.10...v0.11.0) diff --git a/public/js/activity.js b/public/js/activity.js index 8c97f3089..eb0f7151a 100644 Binary files a/public/js/activity.js and b/public/js/activity.js differ diff --git a/public/mix-manifest.json b/public/mix-manifest.json index 519e6860b..5480d3446 100644 Binary files a/public/mix-manifest.json and b/public/mix-manifest.json differ diff --git a/resources/assets/js/components/Activity.vue b/resources/assets/js/components/Activity.vue index 570a2e798..b14553328 100644 --- a/resources/assets/js/components/Activity.vue +++ b/resources/assets/js/components/Activity.vue @@ -19,42 +19,42 @@

- {{truncate(n.account.username)}} liked your post. + {{n.account.local == false ? '@':''}}{{truncate(n.account.username)}} liked your post.

- {{truncate(n.account.username)}} commented on your post. + {{n.account.local == false ? '@':''}}{{truncate(n.account.username)}} commented on your post.

- {{truncate(n.account.username)}} mentioned you. + {{n.account.local == false ? '@':''}}{{truncate(n.account.username)}} mentioned you.

- {{truncate(n.account.username)}} followed you. + {{n.account.local == false ? '@':''}}{{truncate(n.account.username)}} followed you.

- {{truncate(n.account.username)}} shared your post. + {{n.account.local == false ? '@':''}}{{truncate(n.account.username)}} shared your post.

- {{truncate(n.account.username)}} updated a modlog. + {{truncate(n.account.username)}} updated a modlog.

- {{truncate(n.account.username)}} tagged you in a post. + {{n.account.local == false ? '@':''}}{{truncate(n.account.username)}} tagged you in a post.

- {{truncate(n.account.username)}} sent a dm. + {{n.account.local == false ? '@':''}}{{truncate(n.account.username)}} sent a dm.

@@ -63,7 +63,7 @@
- +
@@ -83,7 +83,7 @@ Follow
--> - +