mirror of
https://ghfast.top/https://github.com/discourse/discourse-follow.git
synced 2026-07-17 11:56:26 +08:00
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
8 lines
231 B
JavaScript
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);
|
|
}
|
|
}
|