mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe.git
synced 2024-11-10 02:30:13 +00:00
fix mistakes
This commit is contained in:
parent
6bb75a3a6d
commit
4b7007bc7d
3 changed files with 1 additions and 7 deletions
|
@ -8,9 +8,7 @@
|
|||
:style="style"
|
||||
class="background-image"
|
||||
/>
|
||||
<div
|
||||
class="panel-heading"
|
||||
>
|
||||
<div class="panel-heading">
|
||||
<div class="user-info">
|
||||
<div class="container">
|
||||
<a
|
||||
|
|
|
@ -147,7 +147,6 @@ export const mutations = {
|
|||
},
|
||||
addNewUsers (state, users) {
|
||||
each(users, (user) => {
|
||||
// console.log(user)
|
||||
if (user.relationship) {
|
||||
set(state.relationships, user.relationship.id, user.relationship)
|
||||
}
|
||||
|
|
|
@ -320,9 +320,6 @@ export const parseStatus = (data) => {
|
|||
? String(output.in_reply_to_user_id)
|
||||
: null
|
||||
|
||||
if (data.account.pleroma.relationship) {
|
||||
data.account.pleroma.relationship = undefined
|
||||
}
|
||||
output.user = parseUser(masto ? data.account : data.user)
|
||||
|
||||
output.attentions = ((masto ? data.mentions : data.attentions) || []).map(parseUser)
|
||||
|
|
Loading…
Reference in a new issue