diff --git a/src/components/status_content/status_content.js b/src/components/status_content/status_content.js index b536b91c..a6f79d76 100644 --- a/src/components/status_content/status_content.js +++ b/src/components/status_content/status_content.js @@ -90,17 +90,6 @@ const StatusContent = { } return true }, - tagsSorted () { - return this.status.tags.sort((a, b) => { - if (a.name < b.name) { - return -1 - } - if (a.name > b.name) { - return 1 - } - return 0 - }) - }, attachmentSize () { if ((this.mergedConfig.hideAttachments && !this.inConversation) || (this.mergedConfig.hideAttachmentsInConv && this.inConversation) || diff --git a/src/components/status_content/status_content.vue b/src/components/status_content/status_content.vue index 2544a5e6..e2233cb1 100644 --- a/src/components/status_content/status_content.vue +++ b/src/components/status_content/status_content.vue @@ -89,7 +89,7 @@