Robin Ward aae97457d2
REFACTOR: Don't use layoutName in select-kit (#10556)
Instead import the templates as modules, the way Ember CLI wants us to.
2020-08-28 15:30:20 -04:00

11 lines
383 B
JavaScript

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