Skip to content

Commit

Permalink
Fixed infinite growing charts
Browse files Browse the repository at this point in the history
  • Loading branch information
asantibanez committed Nov 9, 2020
1 parent 0457a9a commit 940109e
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.5.2 - 2020-11-09

- Fixed infinite growing charts

## 1.5.1 - 2020-11-09

- Removed unused Alpine directives
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire-area-chart.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div
class="w-full h-full"
style="width: 100%; height: 100%;"
x-data="{ ...areaChart() }"
x-init="drawChart(@this)"
>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire-column-chart.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div
class="w-full h-full"
style="width: 100%; height: 100%;"
x-data="{ ...columnChart() }"
x-init="drawChart(@this)"
>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire-line-chart.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div
class="w-full h-full"
style="width: 100%; height: 100%;"
x-data="{ ...lineChart() }"
x-init="drawChart(@this)"
>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire-multi-column-chart.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div
class="w-full h-full"
style="width: 100%; height: 100%;"
x-data="{ ...multiColumnChart() }"
x-init="drawChart(@this)"
>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire-multi-line-chart.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div
class="w-full h-full"
style="width: 100%; height: 100%;"
x-data="{ ...multiLineChart() }"
x-init="drawChart(@this)"
>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire-pie-chart.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div
class="w-full h-full"
style="width: 100%; height: 100%;"
x-data="{ ...pieChart() }"
x-init="drawChart(@this)"
>
Expand Down

0 comments on commit 940109e

Please sign in to comment.