mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-22 21:20:57 +08:00
8 lines
355 B
JavaScript
Vendored
8 lines
355 B
JavaScript
Vendored
import { readOnly } from "@ember/object/computed";
|
|
import { classNames } from "@ember-decorators/component";
|
|
import SelectKitRowComponent from "select-kit/components/select-kit/select-kit-row";
|
|
|
|
@classNames("dropdown-select-box-row")
|
|
export default class DropdownSelectBoxRow extends SelectKitRowComponent {
|
|
@readOnly("item.description") description;
|
|
}
|