diff options
| author | Sean King <seanking2919@protonmail.com> | 2022-07-11 01:36:01 +0000 |
|---|---|---|
| committer | Sean King <seanking2919@protonmail.com> | 2022-07-11 01:36:01 +0000 |
| commit | 65b0b69f109c42f07fe14c764d6a4e01bd763a83 (patch) | |
| tree | 770400e536a59d034fb475e98985d7131e66ff2c /src/components/status/status.js | |
| parent | e764fbe8b680d9b60fba3074de3ee2db88b3b674 (diff) | |
| parent | acd53957e09a499b04c8f901e5829607f7363b57 (diff) | |
Merge branch 'from/edit-status/tusooa/indicator' into 'add/edit-status'
Edited indicator on status
See merge request seanking/pleroma-fe!4
Diffstat (limited to 'src/components/status/status.js')
| -rw-r--r-- | src/components/status/status.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js index a925f30b..b7f20374 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -392,6 +392,12 @@ const Status = { }, visibilityLocalized () { return this.$i18n.t('general.scope_in_timeline.' + this.status.visibility) + }, + isEdited () { + return this.status.edited_at !== null + }, + editingAvailable () { + return this.$store.state.instance.editingAvailable } }, methods: { |
