mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
11 lines
360 B
JavaScript
11 lines
360 B
JavaScript
|
import Component from "@ember/component";
|
||
|
import { reads } from "@ember/object/computed";
|
||
|
|
||
|
export default Component.extend({
|
||
|
tagName: "h3",
|
||
|
layoutName:
|
||
|
"select-kit/templates/components/toolbar-popup-menu-options/toolbar-popup-menu-options-heading",
|
||
|
classNames: ["toolbar-popup-menu-options-heading"],
|
||
|
heading: reads("collection.content.title")
|
||
|
});
|