mirror of
https://github.com/discourse/discourse.git
synced 2025-06-06 13:06:56 +08:00
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:
@ -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));
|
||||
});
|
||||
},
|
||||
};
|
||||
|
Reference in New Issue
Block a user