Skip to content

Commit bbbb627

Browse files
committed
allow array in array
1 parent 8a79db2 commit bbbb627

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"typescript": "^5.3.2"
3131
},
3232
"dependencies": {
33-
"@node-projects/base-custom-webcomponent": "^0.21.0",
33+
"@node-projects/base-custom-webcomponent": "^0.21.1",
3434
"chart.js": "^4.4.0"
3535
}
3636
}

src/chart/ChartJsWebcomponent.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ export class ChartJsWebcomponent extends BaseCustomWebComponentConstructorAppend
7474
}
7575

7676
public ready() {
77-
this._parseAttributesToProperties();
77+
this._parseAttributesToProperties(true);
78+
7879
this.#renderChart();
7980
this.#ready = true;
8081
}

0 commit comments

Comments
 (0)