mirror of
https://github.com/discourse/discourse.git
synced 2024-12-16 06:39:46 +08:00
d1cc60c435
Changes made using the ember-native-class-codemod, plus some manual tweaks
9 lines
355 B
JavaScript
9 lines
355 B
JavaScript
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;
|
|
}
|