mirror of
https://github.com/discourse/discourse.git
synced 2024-12-20 14:13:44 +08:00
48193767bf
Automatically generated by `eslint --fix` to satisfy the updated configuration
13 lines
423 B
JavaScript
13 lines
423 B
JavaScript
import discourseComputed from "discourse-common/utils/decorators";
|
|
import I18n from "I18n";
|
|
import DropdownSelectBoxRowComponent from "select-kit/components/dropdown-select-box/dropdown-select-box-row";
|
|
|
|
export default DropdownSelectBoxRowComponent.extend({
|
|
classNames: ["period-chooser-row"],
|
|
|
|
@discourseComputed("rowName")
|
|
title(rowName) {
|
|
return I18n.t(`filters.top.${rowName || "this_week"}`).title;
|
|
},
|
|
});
|