2018-01-15 11:55:16 +01:00
|
|
|
import DropdownSelectBoxRowComponent from "select-kit/components/dropdown-select-box/dropdown-select-box-row";
|
2018-03-28 13:19:25 +02:00
|
|
|
import computed from "ember-addons/ember-computed-decorators";
|
2018-01-15 11:55:16 +01:00
|
|
|
|
|
|
|
export default DropdownSelectBoxRowComponent.extend({
|
2018-06-15 17:03:24 +02:00
|
|
|
layoutName:
|
|
|
|
"select-kit/templates/components/period-chooser/period-chooser-row",
|
2018-03-28 13:19:25 +02:00
|
|
|
classNames: "period-chooser-row",
|
|
|
|
|
|
|
|
@computed("computedContent")
|
|
|
|
title(computedContent) {
|
2018-06-15 17:03:24 +02:00
|
|
|
return I18n.t(`filters.top.${computedContent.name || "this_week"}`).title;
|
2018-03-28 13:19:25 +02:00
|
|
|
}
|
2018-01-15 11:55:16 +01:00
|
|
|
});
|