Skip to content

Commit 940109e

Browse files
committed
Fixed infinite growing charts
1 parent 0457a9a commit 940109e

7 files changed

+10
-6
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.5.2 - 2020-11-09
4+
5+
- Fixed infinite growing charts
6+
37
## 1.5.1 - 2020-11-09
48

59
- Removed unused Alpine directives

resources/views/livewire-area-chart.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div
2-
class="w-full h-full"
2+
style="width: 100%; height: 100%;"
33
x-data="{ ...areaChart() }"
44
x-init="drawChart(@this)"
55
>

resources/views/livewire-column-chart.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div
2-
class="w-full h-full"
2+
style="width: 100%; height: 100%;"
33
x-data="{ ...columnChart() }"
44
x-init="drawChart(@this)"
55
>

resources/views/livewire-line-chart.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div
2-
class="w-full h-full"
2+
style="width: 100%; height: 100%;"
33
x-data="{ ...lineChart() }"
44
x-init="drawChart(@this)"
55
>

resources/views/livewire-multi-column-chart.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div
2-
class="w-full h-full"
2+
style="width: 100%; height: 100%;"
33
x-data="{ ...multiColumnChart() }"
44
x-init="drawChart(@this)"
55
>

resources/views/livewire-multi-line-chart.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div
2-
class="w-full h-full"
2+
style="width: 100%; height: 100%;"
33
x-data="{ ...multiLineChart() }"
44
x-init="drawChart(@this)"
55
>

resources/views/livewire-pie-chart.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div
2-
class="w-full h-full"
2+
style="width: 100%; height: 100%;"
33
x-data="{ ...pieChart() }"
44
x-init="drawChart(@this)"
55
>

0 commit comments

Comments
 (0)