aboutsummaryrefslogtreecommitdiff
path: root/src/components/status
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2022-07-31 12:36:02 +0300
committerHenry Jameson <me@hjkos.com>2022-07-31 12:36:02 +0300
commitfc18673030513fa663289d051bb0733a97b8e053 (patch)
tree97114e0544414689c08fc04f50bcfbb22689e725 /src/components/status
parentfddb531ed20b31c44e6911418e7bbb884836c40a (diff)
deal with no-prototype-builtins
Diffstat (limited to 'src/components/status')
-rw-r--r--src/components/status/status.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js
index 0a2690f6..384063a7 100644
--- a/src/components/status/status.js
+++ b/src/components/status/status.js
@@ -361,6 +361,7 @@ const Status = {
return uniqBy(combinedUsers, 'id')
},
tags () {
+ // eslint-disable-next-line no-prototype-builtins
return this.status.tags.filter(tagObj => tagObj.hasOwnProperty('name')).map(tagObj => tagObj.name).join(' ')
},
hidePostStats () {