Skip to content

Commit

Permalink
eslint: fix mix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
fundon committed Mar 2, 2017
1 parent 07bcdb5 commit 974982d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/views/charts/Chartjs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export default {
],
labels_2: ['April', 'May', 'June', 'Jule', 'August', 'September', 'October', 'November', 'December'],
data_2: [1, 9, 3, 4, 5, 6, 7, 8, 2].map(e => Math.sin(e) * 25 + 25),
data_2: [1, 9, 3, 4, 5, 6, 7, 8, 2].map(e => (Math.sin(e) * 25) + 25),
labels_3: ['May', 'June', 'Jule', 'August', 'September', 'October', 'November'],
data_3: [
Expand Down

0 comments on commit 974982d

Please sign in to comment.