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