diff --git a/webapp/components/Chat/Chat.vue b/webapp/components/Chat/Chat.vue index 37c2b3e06..faffa45e0 100644 --- a/webapp/components/Chat/Chat.vue +++ b/webapp/components/Chat/Chat.vue @@ -334,9 +334,7 @@ export default { ;[...this.messages, ...Message].forEach((m) => { if (m.senderId !== this.currentUser.id) m.seen = true m.date = new Date(m.date).toDateString() - if (!m.avatar?.startsWith('/api/')) { - m.avatar = this.$filters.proxyApiUrl(m.avatar) - } + m.avatar = this.$filters.proxyApiUrl(m.avatar) msgs[m.indexId] = m }) this.messages = msgs.filter(Boolean) diff --git a/webapp/components/FilterMenu/FilterMenuSection.vue b/webapp/components/FilterMenu/FilterMenuSection.vue index 0970fac9b..7e82fa47e 100644 --- a/webapp/components/FilterMenu/FilterMenuSection.vue +++ b/webapp/components/FilterMenu/FilterMenuSection.vue @@ -80,10 +80,6 @@ export default { @media only screen and (max-width: 630px) { flex-direction: column; - > .title { - text-align: center; - } - // > .sidebar { // max-width: none; // } diff --git a/webapp/components/FilterMenu/PostTypeFilter.vue b/webapp/components/FilterMenu/PostTypeFilter.vue index 6a9b15985..f05554815 100644 --- a/webapp/components/FilterMenu/PostTypeFilter.vue +++ b/webapp/components/FilterMenu/PostTypeFilter.vue @@ -2,7 +2,7 @@