mirror of
https://github.com/discourse/discourse.git
synced 2025-01-17 04:12:51 +08:00
12 lines
438 B
JavaScript
12 lines
438 B
JavaScript
|
import { classNames } from "@ember-decorators/component";
|
||
|
import ComboBoxComponent from "select-kit/components/combo-box";
|
||
|
import { pluginApiIdentifiers } from "./select-kit";
|
||
|
|
||
|
@classNames("homepage-style-selector")
|
||
|
@pluginApiIdentifiers(["homepage-style-selector"])
|
||
|
export default class HomepageStyleSelector extends ComboBoxComponent {
|
||
|
modifyComponentForRow() {
|
||
|
return "homepage-style-selector/homepage-style-selector-row";
|
||
|
}
|
||
|
}
|