FIX: Hashtags were not decorated in user activity list (#24125)

This was just a case of removing the `onlyStream: true`
operation from `decorateCookedElement`, since that restricts
the decoration only to topic page posts.
This commit is contained in:
Martin Brennan
2023-10-27 12:00:19 +10:00
committed by GitHub
parent 7f57ba45ac
commit 545e92039c
2 changed files with 51 additions and 3 deletions

View File

@ -8,9 +8,7 @@ export default {
const site = owner.lookup("service:site");
withPluginApi("0.8.7", (api) => {
api.decorateCookedElement((post) => decorateHashtags(post, site), {
onlyStream: true,
});
api.decorateCookedElement((post) => decorateHashtags(post, site));
});
},
};