Skip to content
Snippets Groups Projects
Commit 4c5d60ab authored by lain's avatar lain
Browse files

Reactivity fixes for attachments.

parent 0df3ca47
No related branches found
No related tags found
No related merge requests found
......@@ -45,6 +45,9 @@ export const prepareStatus = (status) => {
status.nsfw = !!status.text.match(nsfwRegex)
}
// To make the array reactive
status.attachments = status.attachments || []
return status
}
......@@ -77,6 +80,8 @@ const mergeOrAdd = (arr, item) => {
if (oldItem) {
// We already have this, so only merge the new info.
merge(oldItem, item)
// Reactivity fix.
oldItem.attachments.splice(oldItem.attachments.length)
return {item: oldItem, new: false}
} else {
// This is a new item, prepare it
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment