Skip to content

Commit 6424f7f

Browse files
committed
clean command data
1 parent 7dfa9b2 commit 6424f7f

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/views/Chart.vue

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -929,19 +929,16 @@ export default {
929929
commandData() {
930930
var dataObject = {
931931
date: this.chartRequestDate.year + this.chartRequestDate.month + this.chartRequestDate.day,
932-
day: this.chartRequestDate.year + this.chartRequestDate.month + this.chartRequestDate.day,
933932
};
934933
switch (this.chartRange) {
935934
case "month":
936935
dataObject = {
937936
date: this.chartRequestDate.year + this.chartRequestDate.month,
938-
month: this.chartRequestDate.year + this.chartRequestDate.month,
939937
};
940938
break;
941939
case "year":
942940
dataObject = {
943941
date: this.chartRequestDate.year,
944-
year: this.chartRequestDate.year,
945942
};
946943
break;
947944
}

0 commit comments

Comments
 (0)