discourse/app/assets/javascripts/admin/addon/components/modal/custom-date-range.hbs
Arpit Jalan b39f823fd3
FEATURE: add custom date range filter for admin dashboard reports (#23702)
* FEATURE: add custom date range filter for admin dashboard reports

* Improvements per David's review
2023-09-29 14:44:17 +05:30

22 lines
501 B
Handlebars

<DModal
class="custom-date-range-modal"
@title={{i18n "admin.dashboard.reports.dates"}}
@closeModal={{@closeModal}}
>
<:body>
<DateTimeInputRange
@from={{this.startDate}}
@to={{this.endDate}}
@onChange={{this.onChangeDateRange}}
@showFromTime={{false}}
@showToTime={{false}}
/>
</:body>
<:footer>
<DButton
@action={{this.updateDateRange}}
@label="admin.dashboard.reports.refresh_report"
@icon="sync"
/>
</:footer>
</DModal>