diff options
| author | ValD <maghtpol@gmail.com> | 2018-12-05 00:15:08 +0530 |
|---|---|---|
| committer | ValD <maghtpol@gmail.com> | 2018-12-05 00:15:08 +0530 |
| commit | da3adff5a880c04f38626b738decef49cae39e13 (patch) | |
| tree | cc996574a89c3bc46f695045665ced1998cff7e5 /src/components/status/status.js | |
| parent | f146562d70f0c25c0c6abcbde9805629fc792822 (diff) | |
used the deleted data param as condition in status template
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 10716583..5390d5de 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -53,6 +53,9 @@ const Status = { const user = this.retweet ? (this.statusoid.retweeted_status.user) : this.statusoid.user return highlightClass(user) }, + deleted() { + return this.statusoid.deleted + }, repeaterStyle () { const user = this.statusoid.user const highlight = this.$store.state.config.highlight |
