We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 787d18d commit 41f9a7cCopy full SHA for 41f9a7c
resources/assets/component.js
@@ -85,7 +85,7 @@ class ComponentDot {
85
this.name = name;
86
this.DOM = document.getElementById(name);
87
if (!Array.isArray(selected) || !Array.isArray(select)) {
88
- console.error('Dot param selected is not array!');
+ console.error('Dot param selected and select must be array!');
89
return;
90
}
91
this.make(selected, select);
@@ -222,7 +222,7 @@ class ComponentCascadeDot {
222
223
224
225
- console.error('CascadeDot param selected is not array!');
+ console.error('CascadeDot param selected and select must be array!');
226
227
228
this.selected_data = selected;
0 commit comments