Skip to content

Commit 5867fe1

Browse files
committed
fix(Dashboard): width card-line*-chart-example ie issue
1 parent 7a8847b commit 5867fe1

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

src/views/Dashboard.vue

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<h4 class="mb-0">9.823</h4>
1717
<p>Members online</p>
1818
</b-card-body>
19-
<card-line1-chart-example chartId="card-chart-01" class="chart-wrapper px-3" style="height:70px;" height="70"/>
19+
<card-line1-chart-example chartId="card-chart-01" class="chart-wrapper px-3" style="height:70px;" :height="70"/>
2020
</b-card>
2121
</b-col>
2222
<b-col sm="6" lg="3">
@@ -34,7 +34,7 @@
3434
<h4 class="mb-0">9.823</h4>
3535
<p>Members online</p>
3636
</b-card-body>
37-
<card-line2-chart-example chartId="card-chart-02" class="chart-wrapper px-3" style="height:70px;" height="70"/>
37+
<card-line2-chart-example chartId="card-chart-02" class="chart-wrapper px-3" style="height:70px;" :height="70"/>
3838
</b-card>
3939
</b-col>
4040
<b-col sm="6" lg="3">
@@ -568,3 +568,10 @@ export default {
568568
}
569569
}
570570
</script>
571+
572+
<style>
573+
/* IE fix */
574+
#card-chart-01, #card-chart-02 {
575+
width: 100% !important;
576+
}
577+
</style>

0 commit comments

Comments
 (0)