diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a193e23..b868f4b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Added - Create `/statuses/:id` route that shows single status +- Add link to the user's account in Pleroma on the user's profile page +- On Reports page add links to reported account and the author of the report +- In Notes add link to the note author's profile page +- In Moderation log add link to the actor's profile page ### Changed diff --git a/src/components/Status/index.vue b/src/components/Status/index.vue index 292e8e68..f2b071c2 100644 --- a/src/components/Status/index.vue +++ b/src/components/Status/index.vue @@ -5,7 +5,11 @@
- +
@@ -100,7 +104,7 @@ @@ -264,6 +268,9 @@ export default { width: 100%; } } + .router-link { + text-decoration: none; + } .show-more-button { margin-left: 5px; } diff --git a/src/lang/en.js b/src/lang/en.js index 291bbde3..2ef9a89c 100644 --- a/src/lang/en.js +++ b/src/lang/en.js @@ -254,7 +254,8 @@ export default { direct: 'Direct', private: 'Private', public: 'Public', - unlisted: 'Unlisted' + unlisted: 'Unlisted', + openStatusInInstance: 'Open status in instance' }, userProfile: { tags: 'Tags', @@ -270,6 +271,7 @@ export default { status: 'Status', deactivated: 'Deactivated', noStatuses: 'No statuses to show', + openAccountInInstance: 'Open account in instance', securitySettings: { email: 'Email', password: 'Password', diff --git a/src/views/moderation_log/LogEntryMessage.vue b/src/views/moderation_log/LogEntryMessage.vue new file mode 100644 index 00000000..d9cc8547 --- /dev/null +++ b/src/views/moderation_log/LogEntryMessage.vue @@ -0,0 +1,46 @@ + + + + + diff --git a/src/views/moderation_log/index.vue b/src/views/moderation_log/index.vue index 5ab2186a..af123e22 100644 --- a/src/views/moderation_log/index.vue +++ b/src/views/moderation_log/index.vue @@ -43,7 +43,8 @@ v-for="(logEntry, index) in log" :key="index" :timestamp="normalizeTimestamp(logEntry.time)"> - {{ logEntry.message }} + + {{ logEntry.message }} -
- + +
@@ -51,25 +56,30 @@ {{ report.content }}
-
- + + -
+
@@ -192,14 +202,22 @@ export default {