Robin Ward 09ca75d17e FIX: select-kit was in the wrong place
`app/` means we want to merge it into our application there. `addon`
means give it its own module namespace, which is what we wanted.
2020-05-20 11:51:49 -04:00

11 lines
372 B
JavaScript

import { readOnly } from "@ember/object/computed";
import SelectKitRowComponent from "select-kit/components/select-kit/select-kit-row";
export default SelectKitRowComponent.extend({
layoutName:
"select-kit/templates/components/dropdown-select-box/dropdown-select-box-row",
classNames: ["dropdown-select-box-row"],
description: readOnly("item.description")
});