2019-11-08 11:32:20 -05:00
|
|
|
import { alias } from "@ember/object/computed";
|
2017-11-21 05:53:09 -05:00
|
|
|
import SelectKitRowComponent from "select-kit/components/select-kit/select-kit-row";
|
|
|
|
|
|
|
|
export default SelectKitRowComponent.extend({
|
2018-06-15 11:03:24 -04:00
|
|
|
layoutName:
|
|
|
|
"select-kit/templates/components/dropdown-select-box/dropdown-select-box-row",
|
2017-11-21 05:53:09 -05:00
|
|
|
classNames: "dropdown-select-box-row",
|
|
|
|
|
2019-11-08 11:32:20 -05:00
|
|
|
description: alias(
|
2018-06-15 11:03:24 -04:00
|
|
|
"computedContent.originalContent.description"
|
|
|
|
)
|
2017-11-21 05:53:09 -05:00
|
|
|
});
|