From 7776ae80f000839dfec4c97255caf75517d7aa25 Mon Sep 17 00:00:00 2001 From: Tyler-A Date: Wed, 5 Aug 2020 20:48:29 -0600 Subject: [PATCH] Pass the amount ot fetch through as a property that makes more sense than "amount". --- src/components/ControlBar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ControlBar.vue b/src/components/ControlBar.vue index 5127a38..d84bb6b 100644 --- a/src/components/ControlBar.vue +++ b/src/components/ControlBar.vue @@ -161,7 +161,7 @@ export default { data_request() { this.event(`data_request`, { type: this.type, - amount: this.amount || `10`, + limit: this.amount || `10`, duration: this.duration, }); },