mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
11 lines
384 B
JavaScript
11 lines
384 B
JavaScript
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";
|
|
import { readOnly } from "@ember/object/computed";
|
|
|
|
export default SelectKitRowComponent.extend({
|
|
layout,
|
|
classNames: ["dropdown-select-box-row"],
|
|
|
|
description: readOnly("item.description"),
|
|
});
|