diff --git a/changelog/30349.txt b/changelog/30349.txt new file mode 100644 index 0000000000..fa35126218 --- /dev/null +++ b/changelog/30349.txt @@ -0,0 +1,4 @@ + +```release-note:improvement +ui (enterprise): Replace date selector in client count usage page with fixed start and end dates that align with billing periods in order to return more relevant client counting data. +``` diff --git a/ui/app/components/clients/date-range.hbs b/ui/app/components/clients/date-range.hbs index bc7977f8f8..eb24de373f 100644 --- a/ui/app/components/clients/date-range.hbs +++ b/ui/app/components/clients/date-range.hbs @@ -4,35 +4,47 @@ }}
{{this.formattedDate @startTime}}
-—
-{{this.formattedDate @endTime}}
-The start date will be used as the client counting start time and all clients in that month will be considered new. - {{#if this.version.isEnterprise}} - We recommend setting this date as your license or billing start date to get the most accurate new and total - client count estimations. These dates are only for querying data in storage. Editing the date range does not - change any license or billing configurations. - {{/if}}
+ For billing period: + {{this.formattedStartDate}} + - + {{this.formattedEndDate}} +
+SELECTED DATE {{if this.formattedEndDate " RANGE"}}
{{this.formattedStartDate}} - {{if this.formattedEndDate "-"}} - {{this.formattedEndDate}}
+ {{#if this.showEndDate}} + {{"-"}} + {{this.formattedEndDate}} + {{/if}} +