mirror of
https://github.com/discourse/discourse.git
synced 2024-12-17 06:33:42 +08:00
11 lines
360 B
Plaintext
11 lines
360 B
Plaintext
|
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")
|
||
|
});
|