Skip to content

Commit 8eb00fe

Browse files
committed
Use a bigger time window by default.
Signed-off-by: Hiram Chirino <hiram@hiramchirino.com>
1 parent 982f48e commit 8eb00fe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

frontend/src/views/CampaignAnalytics.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,8 @@ export default Vue.extend({
301301
created() {
302302
const now = dayjs().set('hour', 23).set('minute', 59).set('seconds', 0);
303303
this.form.to = now.toDate();
304-
this.form.from = now.subtract(7, 'day').set('hour', 0).set('minute', 0).toDate();
304+
// this.form.from = now.subtract(7, 'day').set('hour', 0).set('minute', 0).toDate();
305+
this.form.from = now.subtract(10, 'year').set('hour', 0).set('minute', 0).toDate();
305306
},
306307
307308
mounted() {

0 commit comments

Comments
 (0)