Skip to content
This repository was archived by the owner on Jul 22, 2025. It is now read-only.

Commit aeba724

Browse files
authored
FIX: Switch up start/end dates in emotion dashboard report (#951)
1 parent 9576272 commit aeba724

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

assets/javascripts/discourse/controllers/admin-dashboard-sentiment.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ export default class AdminDashboardSentiment extends AdminDashboardTabController
99

1010
get emotionFilters() {
1111
return {
12-
startDate: moment().format("YYYY-MM-DD"),
13-
endDate: moment().subtract(2, "month").format("YYYY-MM-DD"),
12+
startDate: moment().subtract(2, "month").format("YYYY-MM-DD"),
13+
endDate: moment().format("YYYY-MM-DD"),
1414
};
1515
}
1616

0 commit comments

Comments
 (0)