diff options
| author | tusooa <tusooa@kazv.moe> | 2023-07-12 20:45:44 -0400 |
|---|---|---|
| committer | tusooa <tusooa@kazv.moe> | 2023-07-13 00:44:30 -0400 |
| commit | 1c2048749480800e2d44b3876378beee421a79ba (patch) | |
| tree | 49e0957df4068de2f1886734488ea13a1cd9d5f8 /src/components/status/status.js | |
| parent | c9d07c62024a9e2d6f45e33a491daa6b7127abac (diff) | |
Implement showing quotes
Diffstat (limited to 'src/components/status/status.js')
| -rw-r--r-- | src/components/status/status.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js index 9a9bca7a..c10c6cf5 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -401,6 +401,9 @@ const Status = { }, editingAvailable () { return this.$store.state.instance.editingAvailable + }, + quotedStatus () { + return this.status.quote_id ? this.$store.state.statuses.allStatusesObject[this.status.quote_id] : undefined } }, methods: { |
