Skip to content

Commit

Permalink
fix: cleaned up the console.log call sneaked in by mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
Justineo committed Feb 8, 2023
1 parent 6159c7d commit b86280e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 6.5.4

* Cleaned up the `console.log` call sneaked in by mistake.

## 6.5.3

* Fixed default behavior for `notMerge` option (#691).
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ Drop `<script>` inside your HTML file and access the component via `window.VueEC
```html
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].3"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].4"></script>
```
<!-- vue3Scripts:end -->

Expand All @@ -247,7 +247,7 @@ app.component('v-chart', VueECharts)
```html
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].3"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].4"></script>
```
<!-- vue2Scripts:end -->

Expand Down
4 changes: 2 additions & 2 deletions README.zh-Hans.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ import "echarts";
```html
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].3"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].4"></script>
```
<!-- vue3Scripts:end -->

Expand All @@ -247,7 +247,7 @@ app.component('v-chart', VueECharts)
```html
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].3"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].4"></script>
```
<!-- vue2Scripts:end -->

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-echarts",
"version": "6.5.3",
"version": "6.5.4",
"description": "Vue.js component for Apache ECharts.",
"author": "GU Yiling <[email protected]>",
"scripts": {
Expand Down
1 change: 0 additions & 1 deletion src/ECharts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,6 @@ export default defineComponent({
if (!chart.value) {
init();
} else {
console.log(`notMerge: ${option !== oldOption}`);
chart.value.setOption(option, {
// mutating `option` will lead to `notMerge: false` and
// replacing it with new reference will lead to `notMerge: true`
Expand Down

1 comment on commit b86280e

@vercel
Copy link

@vercel vercel bot commented on b86280e Feb 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.