discourse-follow/assets/javascripts/discourse/components/follow-feed-post.js
David Taylor b17ec5a246
UX: Re-use UserStreamItem from core (#91)
Previously this template file was copy/pasted/edited from core. Properly reusing the core component should help to ensure that any visual changes in core also apply to the reactions activity stream
2023-03-23 17:21:39 +00:00

8 lines
231 B
JavaScript

import Component from "@glimmer/component";
import getURL from "discourse-common/lib/get-url";
export default class DiscourseReactionsReactionPost extends Component {
get postUrl() {
return getURL(this.args.post.url);
}
}